jQuery(function ($) {
			jQuery(document).ready(function(){
				
				//Full Caption Sliding (Hidden to Visible)
				jQuery('.boxgrid.captionfull').hover(function(){
					jQuery(".cover", this).stop().animate({queue:false,duration:160});
				}, function() {
					jQuery(".cover", this).stop().animate({queue:false,duration:160});
				});
			
			});
		});	
			

