$(document).ready(function(){
	$('a[href^=#]').click(function(){return false;});
	
	$("#carregando").hide();
	$("#carregando").ajaxStart(function(){$("#carregando").show();});
	$("#carregando").ajaxStop(function(){$("#carregando").hide();});

	$("#menu li, #menu li ul li a").hover(function(){
			$(this).addClass("hover")
		},
		function(){
			$(this).removeClass("hover")
		}
	);
	
	$('#menu ul li a.sub').click(function(){
		$(this).parent().toggleClass('active');
		$(this).next().slideToggle("slow");
	});

	$('#produtohome').cycle({ 
		fx:     'scrollDown', 
		delay:  3000 
	});
	
	$('#produtohome').hover(function(){
			$(this).cycle('pause');
		},
		function(){
			$(this).cycle('resume');
		}
	);

	$('.input').focus(function(){$(this).toggleClass('inputHover')});
	$('.input').blur(function(){$(this).toggleClass('inputHover')});

	if((typeof iniciaOutros) == 'function'){
		iniciaOutros();
	}
});