// JS Global de index
$(document).ready(function()
{
	$(document).pngFix();
										
	//Menu
	var config = {
		sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)
		interval: 100, // number = milliseconds for onMouseOver polling interval
		over: menuTopHover, // function = onMouseOver callback (REQUIRED)
		timeout: 100, // number = milliseconds delay before onMouseOut
		out: menuTopOut // function = onMouseOut callback (REQUIRED)
	};
	
menuVertical();
	
	$('ul#topnav li .subnav').css({'opacity':'1'});
	$('ul#topnav li').hoverIntent(config);
	
		
	
});
			
			//Expand more info button on hover
			$(".more").hover(function(){
				$(this).stop().animate({width: '250px' }, 200).addClass('hover').css({'z-index' : '10'}); //Change the width increase caption size
				//$(this).find('img').css({'margin-left' : '-27.5px'});
			}, function () {
				$(this).stop().animate({width: '50px' }, 200).removeClass('hover').css({'z-index' : '1'});
				//$(this).find('img').css({'margin-left' : '0'});
      		});

