
		$(document).ready(function(){

				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'200px'},{queue:false,duration:160});
				});
								//Full Caption Sliding (Hidden to Visible) 1
				$('.boxgrid1.captionfull1').hover(function(){
					$(".cover", this).stop().animate({top:'234px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'310px'},{queue:false,duration:160});
				});
				
			});
	$(document).ready(function(){
	
		$(".btn").hover(function(){
			$(this).addClass("btnHover");
		},function(){
			$(this).removeClass("btnHover");
		});
		

	});
