
$(window).load(function () {
	
	/******************************************************************************
	 * PAG. HOME
	 ******************************************************************************/
	//Slider - Biblioteca usada "Nivo Slider"
	$('#slider').nivoSlider();
	

	/******************************************************************************
	 * PAG. MENUS THUMBS
	 ******************************************************************************/
	
	$(".thumb").each(function(index){
		$(this).hover(function(){
			$(this).children(".info").fadeIn('slow');
			$(this).stop();
		});
		
		$(this).mouseleave(function(){
			$(".info").hide();
			$(this).children(".info").clearQueue();
		});
	});
	
});
