$(document).ready(function(){
	
	$("#logo-fazenda").hover( // logo animation
		function () { $(this).stop(); $("#logo-fazenda").animate({ opacity: 0 }, 300 ); },
		function () { $(this).stop(); $("#logo-fazenda").animate({ opacity: 1 }, 300 ); }
	);
	
	$("#list-acom a").hover( // rooms' names animations
		function () { $(this).stop(); $(this).animate({ right: '10px' }, 200 ); },
		function () { $(this).stop(); $(this).animate({ right: '0px' }, 180 ); }
	);
	
	
});//end of dom ready

$(window).load(function() {
	$("#mcs2_container,#mcs3_container,#mcs4_container").mCustomScrollbar("vertical",0,"easeOutCirc",1.05,"fixed","yes","no",0);  //acomodacoes scroll
});
