$(document).ready(function(){
	$('.header_inner a.absolute').hover(
		function(){
			$(this)
			.stop(true,true)
			.animate({
				opacity: 0.5
			},100)
		},
		function(){
			$(this)
			.stop(true,true)
			.animate({
				opacity: 1
			},100)
		}
	);	
	$(".sugestoes").fancybox({
		'width'			: 520,		
		'titleShow'		: false,
		'padding'		: 0,
		'onClosed'		: function() {
			$("#login_error").hide();
		}
	});

	$("#enviar").bind("click", function(e) {
		e.preventDefault();

		var formUrl			= "sugestao_mail.php";
		var nomeEnviado 	= $('#nome').val();
		var emailEnviado 	= $('#email').val();
		var foneEnviado 	= $('#fone').val();
		var sugestaoEnviado = $('#descricao').val();
				
		$.ajax({
			type	: "POST",
			cache	: false,
			url		: formUrl,
			data	: {
				nome:	nomeEnviado,
				email:	emailEnviado,
				fone:	foneEnviado,
				mensagem: sugestaoEnviado 
			},
			success	: function(data) {
				alert('Sua sugestão foi enviada! Muito obrigado!')
				$.fancybox.close();
			}			
		});
		return false;
	});
});


//Contato
	$(document).ready(function(){
		var opts =
		{
			align: 'middle',
			size: 80,
			labels: false
		};
		$('#marcas').jqDock(opts);
		/*
		$('.lista_contato li').hover(
			function(){
				$(this).addClass('hover');
			},
			function(){
				$(this).removeClass('hover');
			}
		);*/
		$('.lista_produtos_index').find('a').hover(
			function(){
				$(this).stop(true).fadeTo(300, 0.5);
			},
			function(){
				$(this).stop(true).fadeTo(300, 1);
			}
		);
		$('.lista_contato li').find('input')
			.focus(function(){
				$(this).parent().addClass('hover');				
			})
			.blur(function(){
				$(this).parent().removeClass('hover');
			});
		
		$('.mapa').fancybox({
			'width'				: '60%',
			'height'			: '75%',
			'autoScale'			: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'none',
			'type'				: 'iframe',
			'overlayColor'		: '#506582',
			'overlayOpacity'	: 0.65
		});
		$('.lightbox').fancybox({
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'none',
			'overlayColor'		: '#506582',
			'overlayOpacity'	: 0.65
		});
		$('.foto_modelo').find('a').hover(
			function(){
				$(this).stop(true,true).animate({opacity:0.6},100);
			},
			function(){
				$(this).animate({opacity:1},100);
			}
		);
	});
	
	$(document).ready(function(){
		var w = 226;	
		var largura_total = $('.overview li').length*w;
		
		$('.overview').width(largura_total)
		$li_produtos = $('#li_produtos');	
		$li_produtos.tinyscrollbar({ 
			axis: 'x',
			sizethumb: 'auto'
		});
	});
	
