$(document).ready( function(){
	$(".FK_campo1").change(function(){
		
		var valor = $("#FK_servico_escolhido").val() == "" ? "" : ", " + $("#FK_servico_escolhido").val();
		var valorCampo = $(this).val();
		
		valor = this.checked ? valor + ", " + valorCampo : valor.replace(", " + valorCampo,"");

		$("#FK_servico_escolhido").val(valor.slice(2));
	});
	
	$(".FK_campo2").click(function(){
		var valor = $(this).val()
		$("#FK_forma_de_pgto_escolhida").val(valor);
	});
	
	// OTM
	$("a").attr("target","_parent");
	$("a.blank").attr("target","_blank");
	
	// Flash
	$("#flash").addFlash({
		src: "swf/banner2.swf",
		width: 584,
		height: 201,
		title: "Knower Consultoria"
	});
	
	
	// download
	$('.download a').click(function(){
		$('.loginDownload form input[name="arquivo"]').val($(this).attr('rel'))
		bloqueia({ speed: "slow",  opacity:0.3},function(){
			$('.loginDownload').absoluteCenter({animation:false}).absoluteCenter().show();
		})
	})
	$('.loginDownload a.fechar').click(function(){
		$('.loginDownload form').resetForm();
		$(this).parent().hide();
		$(window).unbind("scroll").unbind("resize");
		bloqueia({ speed: "slow", evento:"fim" });
	})
	
	formDownload = function(){
		$('.loginDownload a.fechar').click();
		$('#newPage').submit();
	};
});