$(document).ready(function(){
	$("img.colored").fadeTo(400,0);
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({bottom:'0px'},{queue:false,duration:160});
		$(".cover h3", this).css("color","#FFCC00");
		$("img.colored",this).stop(true, true).fadeTo(400,1);
	}, function() {
		$(".cover", this).stop().animate({bottom:'-38px'},{queue:false,duration:160});
		$(".cover h3", this).css("color","#FFFFFF");
		$("img.colored",this).stop(true, true).fadeTo(400,0);
	});
});

