// JavaScript Document

$(document).ready(function() {


// Teaser einfaden ......

	   $('.fade').hide();
	  
	   $(window).load( function() {
		 
	   $('.fade').fadeIn('slow');
   });
   


// Teaser Hover ......

/*$(".teaser").hover(function () {	
		
	$(this).find("div:first-child").stop(false,true).animate({ "opacity" : "0.8"}, "fast");
	
	},function () {	
		
				$(this).find("div:first-child").stop(false,true).animate({"opacity" : "1"}, "fast");
	});

   */
   
// End of Code   

});



