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

