jQuery(document).ready(function(){
		
		//UNTERE DREI MODULE
		
		var module = jQuery('#polaroids .modul');
		
		module.children('a').animate({opacity: 0},0,function(){ jQuery(this).hide(); });
		
		module.hover(function(){
		
			jQuery(this).children('a').stop().show().animate({opacity: 0.85},{duration: 800,easing: 'easeOutQuint'});
							  
		}, function(){
			
			jQuery(this).children('a').stop().animate({opacity: 0},{duration: 800,easing: 'easeOutQuint', complete: function(){ jQuery(this).hide(); } });
			
		});
		
									
});
