$(document).ready(function() {
	$('#slider').s3Slider({
		timeOut: 5000
	});
	
	$("#menu li").hover(function() {
		
		$(this).parent().find("ul").css('visible','hidden');
		$(this).find("ul").slideDown('fast').show();
 
		$(this).hover(function() {
		}, function(){	
			$(this).find("ul").slideUp('fast'); //When the mouse hovers out of the subnav, move it back up
		});

	});
	
});



function horizontal() {
 
   var navItems = document.getElementById("menu_dropdown").getElementsByTagName("li");
    
   for (var i=0; i< navItems.length; i++) {
      if(navItems[i].className == "submenu")
      {
         if(navItems[i].getElementsByTagName('ul')[0] != null)
         {
            navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.style.backgroundColor = "#f9f9f9";}
            navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "#FFFFFF";}
         }
      }
   }
 
}
 

function abrirDiv(nome){
	
	var abrdiv = document.getElementById("imgMaior")
	
} 

