$(document).ready(function() {
	$referer = $(document).getUrlParam("referer");
	if($referer){
		$("input#referer").val($referer)
	}

	$("#formReferer").validate({ errorLabelContainer: $(".msgError"),
		submitHandler: function(){
			$.ajax({
				data: $("#formReferer").serialize(),
				dataType: "json",
				url: 'tbBrastempProccess.php',
				success: function(json){
					if(json.msg == "ok"){
						$("#tbBrastemp .content").hide().next().fadeIn();
						$('a.fechar').hide();
						$('a.fechar2').show();
					}else{
						alert("Xiiiiiiiiiiiiiiii!");
					}
				}
			});
		}
	});

	$("a.fechar").click(function(){
		//parent.location = 'http://loja.brastemp.com.br/ch/vitrines/index.aspx?cc=19&desc=lava-lou%C3%A3%C2%A7as';
		parent.tb_remove();
	});

	$("a.tbBrastemp").click(function(){
		tb_show('', 'desafioBrastemp.php?keepThis=true&TB_iframe=true&width=786&height=587&modal=true', false);
		return false;
	});

	$("h1, h2, h3, span.pratos").ifixpng();
	
});

function fechar2(){
	parent.tb_remove();
};
