$(document).ready(function(){
				
				//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid2.caption2').hover(function(){
					$(".cover2", this).stop().animate({top:'100px'},{queue:false,duration:160});
				}, function() {
					$(".cover2", this).stop().animate({top:'247px'},{queue:false,duration:160});
				});
			});