// Img hover effekt
$(document).ready(function(){
		
	$("a img.imgfade").each(function() {
		$(this).parent("a").hover(function(){
			$("img.imgfade", this).stop().fadeTo(200, 0.5);
		},function(){
			$("img.imgfade", this).stop().fadeTo(500, 1);
		});
	})
		
});

// Links in neuem Fenster
$(document).ready(function(){
	$("a[href^=http://]").not("a[href^=http://www.teil.ch]").attr("target", "_blank");			
 });
