//script para los boxes de choose you trip y iguazu falls
$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute				
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'-5px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'-20px'},{queue:false,duration:300});
	});
				
	$('.boxgridIguazu.captionfullIguazu').hover(function(){
		$(".coverIguazu", this).stop().animate({top:'175px'},{queue:false,duration:300});
	}, function() {
		$(".coverIguazu", this).stop().animate({top:'190px'},{queue:false,duration:300});
	});
				
});
