// allgemeine jQuery-Scripts

$(document).ready(function()
{
	$("div.artikel_liste img.teaserbildleft, div.artikel_liste img.teaserbildright").each(function(index)
	{
		$(this).css('cursor', 'pointer')
		$temp_href = $(this).next('a').attr('href');
		$temp_href = $(this).parent().next('a').attr('href');
		//alert('.. href: '+$temp_href);
		if ($temp_href)
		{
			$(this).wrap('<a href="'+$temp_href+'" />');
		}
	});
});

