/*-----------------------
/shop/layout/jsinclude/teaserbildlink
-----------------------*/

$(function(){
	$('div.teaser img,div.teaser p.text_fett').each(function(){
		if ($('div.teaser img').prev().attr('href') != undefined) {}
		else {
			$(this).css('cursor','pointer').click(function(){
				document.location.href = $(this).parent().find('a').attr('href')
			})
		}
	})
}); 


