$(document).ready(function(){
				
				//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'-5px'},{queue:false,duration:160});
					//$('#book').stop().hide('fast');
					//$('#book2').stop().show('fast');
					
				}, function() {
					$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:160});
					//$('#book2').stop().hide('fast');
					//$('#book').stop().show('fast');
					
				});
				
				
			});
