//http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/
$(document).ready(function(){
	var $j = jQuery.noConflict();  
	//Caption Sliding (Partially Hidden to Visible)
	$j('.boxgrid.caption').hover(function(){
		$j(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	}, function() {
		$j(".cover", this).stop().animate({top:'145px'},{queue:false,duration:160});
	});
});
