// Caption slider for tanguis.in
// Modified by Rohan Jaguste

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