			/*$(document).ready(function(){
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:160});
				});
							});*/
							
				$(document).ready(function() {
				$(".cover").delay(3000).fadeOut(3000);
				$(".boxgrid.captionfull").hover(
 				 function () {                
				 $(".cover", this).fadeIn(300).stop(true, true) ;}, function () { $(".cover", this).stop(true, true).fadeOut(300); 
				 
				 });
				 	});

