// JavaScript Document
$(document).ready(function(){
				//Full Caption Sliding (Hidden to Visible)  395 - 34 (caption height) = 361
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'361px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'395px'},{queue:false,duration:160});
				});
				
			});
	