$(document).live('click', function(){
	$('.siteBarraBaixoLojas .siteBarraBaixoDropDown').each(function(index, element) {
        if ($(this).css('display') == 'block'){
			$(this).css('display', 'none');
		}
    });	
});

$('.siteBarraBaixoLojas').live('click', function(){
	
	if ($(this).find(".siteBarraBaixoDropDown").css('display') == 'none'){
		
		var divSelecionada = this;
		setTimeout(function(){
			
			$(divSelecionada).find(".siteBarraBaixoDropDown").css('display', 'block');
			
		}, 10);
	
	} else {
		$(this).find(".siteBarraBaixoDropDown").css('display', 'none');
	}
	
});

$('.siteBarraBaixoDropDownDuplica').live('click', function(){
	
	if ($(this).parent().parent().attr('id') == 'estadoDropDown'){
	
		$('#estadoForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'civilDropDown'){
	
		$('#civilForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'escolaridadeDropDown'){
	
		$('#escolaridadeForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'cidadeContatoDiv'){
	
		$('#cidadeContatoForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'sexoTrabalheDropDown'){
	
		$('#sexoForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'fumanteTrabalheDropDown'){
	
		$('#fumanteTrabalheForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'casaPropriaTrabalheDropDown'){
	
		$('#casaPropriaForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'casaAlugadaTrabalheDropDown'){
	
		$('#casaAlugadaForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'escolaridadeTrabalheDropDown'){
	
		$('#escolaridadeForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	
	}else if ($(this).parent().parent().attr('id') == 'turnoTrabalheDropDown'){
	
		$('#turnoForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().attr('id') == 'fimSemanaTrabalheDropDown'){
	
		$('#fimSemanaForm').attr('value', $(this).attr('estado'));
		$(this).parent().parent().find('span').html($(this).attr('estado'));
	
	}
	else if ($(this).parent().parent().parent().attr('id') == 'contatoTituloLocalizacao'){
		
		if ($(this).parent().parent().parent().attr('class') == 'esperaMapaGrande'){ $('.esperaEscondeMapa').animate({'height':'500px'}, 2500, function(){ window.location.href = '#mapa'; });  }
		
		$(this).parent().parent().find('span').html($(this).html());
		centralizarMap($(this).attr('page'), 14);	
	
	}
	
	var divSelecionada = this;
	setTimeout(function(){
		
		$(divSelecionada).parent().css('display', 'none');
		
	}, 15);
	
});
