$(document).ready(function() {
	$("div.menu ul li").not(":last").addClass("normal");
	
	$(".EasyHome").hover(function(){
		$(this).css("background-position","left top");	
		$(this).find(".estrela").css("background-position","left top");
	},function(){
		$(this).css("background-position","left bottom");	
		$(this).find(".estrela").css("background-position","left bottom");
	});
	
	$(".MediumHome").hover(function(){
		$(this).css("background-position","left top");	
		$(this).find(".estrela").css("background-position","left top");
	},function(){
		$(this).css("background-position","left bottom");	
		$(this).find(".estrela").css("background-position","left bottom");		
	});
	
	$(".HardHome").hover(function(){
		$(this).css("background-position","left top");	
		$(this).find(".estrela").css("background-position","left top");
	},function(){
		$(this).css("background-position","left bottom");	
		$(this).find(".estrela").css("background-position","left bottom");		
	});
	
	$(".MasterHome").hover(function(){
		$(this).css("background-position","left top");	
		$(this).find(".estrela").css("background-position","left top");
	},function(){
		$(this).css("background-position","left bottom");	
		$(this).find(".estrela").css("background-position","left bottom");		
	});
	
	$(".plano").click(function(){window.location='hospedagem.php'})
	
	$("input.cliente").click(function(){
		if($(this).val() == 0) {
			
			$("#labelnome").html("Nome completo:");
			$("#labelcpf").html("CPF:");
			$("#cpf").mask("999.999.999-99");
		
		} else {
			
			$("#labelnome").html("Razão social:");
			$("#labelcpf").html("CNPJ:");
			$("#cpf").mask("99.999.999/9999-99");
		
		}
	});
	
	$(".planoHosp").bind("change",function(){
		verificaPlano();
	});
});

function abrirPopup() {
	var abrir = window.open("html/contrato_hospedagem.html","contrato","toolbar=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=640,height=400");
	if(abrir)
	  return false;
}

function verificaPlano(){

	if(document.hospedagem.plano.value == "Redirect") {
		document.hospedagem.periodicidade.options[0].disabled = true;
		document.hospedagem.periodicidade.options[1].disabled = true;
		document.hospedagem.periodicidade.options[2].disabled = true;
		document.hospedagem.periodicidade.options[3].selected = true;
	}
	else if(document.hospedagem.plano.value == "Easy") {
		document.hospedagem.periodicidade.options[0].disabled = true;
		document.hospedagem.periodicidade.options[1].disabled = false;
		document.hospedagem.periodicidade.options[2].disabled = false;
		document.hospedagem.periodicidade.options[3].disabled = false;
		document.hospedagem.periodicidade.options[1].selected = true;
	} else {
		document.hospedagem.periodicidade.options[0].disabled = false;
		document.hospedagem.periodicidade.options[1].disabled = false;
		document.hospedagem.periodicidade.options[2].disabled = false;
		document.hospedagem.periodicidade.options[3].disabled = false;
	}
}


