// JavaScript Document
$(document).ready(function(){
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'0px',opacity:'0.8px'},{queue:false,duration:160});
		$(".sliderimage", this).stop().animate({opacity:'1'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'60px',opacity:'0.2px'},{queue:false,duration:160});
		$(".sliderimage", this).stop().animate({opacity:'0.8px'},{queue:false,duration:160});
	});
	
	$(".cover", this).stop().animate({top:'60px',opacity:'0.2px'},{queue:false,duration:160});
	$(".sliderimage", this).stop().animate({opacity:'0.8px'},{queue:false,duration:160});
});

