$(document).ready(
  function(){
	  
    if(document.images){
  
      //Pré-carregamento das Imagens
	
      nome = new Image(200, 176);
      nome.src = 'imgs/aPessoais_pRural.jpg';
      nome = new Image(120, 106);
	  nome.src = 'imgs/aPessoais_pRural_p.jpg';
	  nome = new Image(200, 176);
	  nome.src = 'imgs/acidentesPessoais.jpg';
	  nome = new Image(120, 106);
	  nome.src = 'imgs/acidentesPessoais_p.jpg';
	  nome = new Image(200, 176);
	  nome.src = 'imgs/aPessoais_coberturasBasicas.jpg';
	  nome = new Image(120, 106);
	  nome.src = 'imgs/aPessoais_coberturasBasicas_p.jpg';
	  nome = new Image(200, 176);
	  nome.src = 'imgs/aPessoais_assistenciasGratu.jpg';
	  nome = new Image(120, 106);
	  nome.src = 'imgs/aPessoais_assistenciasGratu_p.jpg';
	  nome = new Image(200, 176);
	  nome.src = 'imgs/aPessoais_contrate.jpg';
      nome = new Image(120, 106);
      nome.src = 'imgs/aPessoais_contrate_p.jpg';
    }
  
    var arrFotos = new Array(10);
	arrFotos[0] = 'imgs/aPessoais_pRural.jpg';
	arrFotos[1] = 'imgs/aPessoais_pRural_p.jpg';
	arrFotos[2] = 'imgs/acidentesPessoais.jpg';
	arrFotos[3] = 'imgs/acidentesPessoais_p.jpg';
	arrFotos[4] = 'imgs/aPessoais_coberturasBasicas.jpg';
	arrFotos[5] = 'imgs/aPessoais_coberturasBasicas_p.jpg';
	arrFotos[6] = 'imgs/aPessoais_assistenciasGratu.jpg';
	arrFotos[7] = 'imgs/aPessoais_assistenciasGratu_p.jpg';
	arrFotos[8] = 'imgs/aPessoais_contrate.jpg';
	arrFotos[9] = 'imgs/aPessoais_contrate_p.jpg';
  
    $(".foto").click(
	  function(){
	  
	    var w = $(this).attr("width");
	    var h = $(this).attr("height");
		var id = $(this).attr("id");
		
		if(w == '200' && h == '176'){
	  
	      $("#conteudo" + id).fadeOut("slow");
		  
	      $(this).animate(
		    {
			  width: '120',
			  height: '106'
		    }, 1000 , function(){ id++; $(this).attr("src", arrFotos[id]).attr("width", "120").attr("height", "106"); ajustarAltura(); });

		
		} else if(w == '120' && h == '106'){
	  
	      $(this).animate(
		    {
			  width: '200',
			  height: '176'
		    }, 1000 , function(){ $(this).attr("src", arrFotos[id]).attr("width", "200").attr("height", "176"); $("#conteudo" + id).fadeIn("slow"); ajustarAltura(); });
		
		}
		
		$(".foto").each(
		  function(){
		  
		    if($(this).attr("id") != id){
			  
	          var w = $(this).attr("width");
	          var h = $(this).attr("height");
		      var id = $(this).attr("id");
		
		      if(w == '200' && h == '176'){
				
				$("#conteudo" + id).fadeOut("slow");
				
	            $(this).animate(
		          {
			        width: '120',
			        height: '106'
		          }, 1000 , function(){ id++; $(this).attr("src", arrFotos[id]).attr("width", "120").attr("height", "106"); ajustarAltura(); });

		
		      }
			  			  
			}
		  
		  }
		);
		
	  }
	);
	
  }
);