$(document).ready(function(){
	

	/* ACORDDION 
		$('h2.accordion').click(function(){
			$(this).next().slideToggle("slow");
			$('.calendario').remove();
		});
	*/
	
	
	$('#chegada1').focus(function(){
		$(this).calendario({ 
			target:'#chegada',
			top:-130
		});
	});
	
	
	$('#saida1').focus(function(){
		$(this).calendario({ 
			target:'#saida',
			top:-130,
			left:-40
		});
	});
});


