// Andacco Calçados
// Desenvolvido por DigitallyMade - 2011
// www.digitallymade.com.br

function set_ultimo_visto(cod)
{
	jQuery.get('linha/set_visto/'+cod, function(data) {
	  //alert(data);
	});
}

function get_representantes(estado)
{
	$('#lista_representantes').html('Aguarde, carregando...');
	
	$.get('representantes/get_representantes/'+estado, function(data) {
	  $('#lista_representantes').html(data);
		
		switch (estado)
		{	  
			case 'SP': $('#estado_representantes').html('São Paulo'); break;
			case 'MG': $('#estado_representantes').html('Minas Gerais'); break;
			case 'RS': $('#estado_representantes').html('Rio Grande do Sul'); break;
			case 'PR': $('#estado_representantes').html('Paraná'); break;
			case 'RJ': $('#estado_representantes').html('Rio de Janeiro'); break;
			case 'GO': $('#estado_representantes').html('Goiás'); break;
			case 'SC': $('#estado_representantes').html('Santa Catarina'); break;
			case 'BA': $('#estado_representantes').html('Bahia'); break;
			case 'PA': $('#estado_representantes').html('Pará'); break;
			case 'DF': $('#estado_representantes').html('Distrito Federal'); break;
			case 'MT': $('#estado_representantes').html('Mato Grosso'); break;
			case 'MA': $('#estado_representantes').html('Maranhão'); break;
			case 'PE': $('#estado_representantes').html('Pernambuco'); break;
			case 'CE': $('#estado_representantes').html('Ceará'); break;
			case 'MS': $('#estado_representantes').html('Mato Grosso do Sul'); break;
			case 'ES': $('#estado_representantes').html('Espírito Santo'); break;
			case 'AM': $('#estado_representantes').html('Amazonas'); break;
			case 'PB': $('#estado_representantes').html('Paraíba'); break;
			case 'PI': $('#estado_representantes').html('Piauí'); break;
			case 'RN': $('#estado_representantes').html('Rio Grande do Norte'); break;
			case 'RO': $('#estado_representantes').html('Rondônia'); break;
			case 'AL': $('#estado_representantes').html('Alagoas'); break;
			case 'SE': $('#estado_representantes').html('Sergipe'); break;
			case 'TO': $('#estado_representantes').html('Tocantins'); break;
			case 'AP': $('#estado_representantes').html('Amapá'); break;
			case 'AC': $('#estado_representantes').html('Acre'); break;
			case 'RR': $('#estado_representantes').html('Roraima'); break;
		}
	  
	});
}


function preload_imgs()
{
	
		// faz preload das imagens de bg
    	 imageObj = new Image();
		 // set image list
		 images = new Array();
		 images[0]="assets/images/colecoes_double.png";
		 images[1]="assets/images/colecoes_header.png";
		 images[2]="assets/images/colecoes_single.png";
		 images[3]="assets/images/linhas_double.png";
		 images[3]="assets/images/linhas_header.png";
		
		 // start preloading
		 for(i=0; i<=images.length; i++) 
		 {
			  imageObj.src=images[i];
		 }		
	
}


$().ready(function()
{

	var v = jQuery("#newsletter").validate({
			submitHandler: function(form) {
				  $.ajax({
				  type: 'POST',
				  url: 'newsletter/enviar',
				  data: $('#newsletter').serialize(),
				  success: function(data)
				  {
				  	alert(data);
					$('#email').val('');					
				  }
				});
			}
		});	
		
		
});
