// JavaScript Document
 $(document).ready(function() 
		{
			$('#wrap-fotos a').lightBox();
			$('a.voltar').click(function()
				{
					history.back();
				}
			);
			//$('select:first').css('text-align' , 'center');		Teste pra centralizar o conteudo selecionado .  
			$(".botoes-logo a").hover(function() {
				$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
			}, function() {
				$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
			});
			//Acrescentar cor de fundo no box da caixa de formulario ativo.
			$("#wrap-form input[type=text]").focus(function() {
				$(this).parent().addClass("curFocus")
				});
				$("input").blur(function() {
				$(this).parent().removeClass("curFocus")
				});
				
			$("select").change(function()
				{
					$('#combo-enderecos div').css('display' , 'none');
					var strId = $('option:selected').attr('id');
					$('#end'+strId).css("display","block");		
					//alert ('#end'+strId);
					
				});
			$('.fotos').cycle({ 
				fx:     'scrollLeft', 
				timeout: 5000, 
				before:  onBefore, 
				after:   onAfter 
			});


 }); 
