// Função Popup: <a href="arquivo.ext" onclick="popup(this.href,'360','535','1'); return false;"></a>
function popup(url,w,h,s) {
	var oW=window.open(url,'popup','width='+w+',height='+h+',directories=0,location=0,menubar=0,resizable=0,scrollbars='+s+',status=0,toolbar=0,marginleft=0,margintop=0,left='+(((screen.availWidth-w)/2)+-10)+',top='+(((screen.height-h)/2)+-10));
}

//Função para impressão
function imprimir(){
	popimpressao = window.open('', '_blank', 'width=751,height=450,left=0,top=0,scrollbars=yes,resizable=no,menubar=no,toolbar=no');

	with (popimpressao.document) {
		write('<html><head><title></title></head>');
		write('<link rel="stylesheet" href="../../css/default.css" type="text/css">');
		write('<link rel="stylesheet" href="../../css/print.css" type="text/css">');
		write('<body>');
		write(document.getElementById("impressao").innerHTML);
		write('</body></html>');
		close();
		}
        popimpressao.print();
}

function redirect(){
	setTimeout("location.href='../home/default.asp';",4000);
}

$(document).ready(function () {
	$(".select a, select ul").mouseover(function(){
		$(this).next().show();
    }).mouseout(function(){
		$(this).next().hide();
    });

	$(".select ul").mouseover(function(){
		$(this).show();
    }).mouseout(function(){
		$(this).hide();
    });
	
	$(".lst_lojistas li .dados:odd, .lst_representante ul:odd").addClass("cor");

	$("#onde_comprar input:eq(0)").click(function () { 
		$("#representante").hide();
		$("#lojistas").fadeIn(200);
		$(document).scrollTop(500);
    });

	$("#onde_comprar input:eq(1)").click(function(){ 
		$("#lojistas").hide();
		$("#representante").fadeIn(200);
		$(document).scrollTop(500);
    });

	$("#onde_comprar h2, #onde_comprar h3").css("font-weight", "bold");
});


 
