$(document).ready(function() {

	//id,largura,altura(top[-1 para não aparecer as setas],left,right),(bottom[-1 para não aparecer as bolas],right),(intervalo de transição em milisegundos)
	iniciar_slideshow_opacidade("slider_grupo1","660","350","-1","-10","-10","-1","420","4000");

	$(".menu_links").not(".menu_selecionado").hover(
	
		function () {
			
			$(this).stop(true,false).animate(
			
				{backgroundPosition:"0 -57px"},
				300
				
			);
			
		},
		function () {
			
			$(this).animate(
			
				{backgroundPosition:"0 0px"},
				500
				
			);
			
		}
	
	);	
	
	$(".menu_lateral").not(".menu_selecionado").hover(
	
		function () {
			
			$(this).stop(true,false).animate(
			
				{backgroundPosition:"-230px 0px", color:"#fff"},
				200
				
			);
			
		},
		function () {
			
			$(this).animate(
			
				{backgroundPosition:"0 0px", color:"#6D6C6C"},
				300
				
			);
			
		}
	
	);	
	
});
