<!--
/*var mensagem="";
function clickIE() {if (document.all) {(mensagem);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(mensagem);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false") */
// --> 

$(function(){
	$(".thumb_produtos li img").click(function(){
		var im = $(this).attr("srcImg");
		$(".foto_principal img").attr("src", im);
//		$("#div_foto").css("top", $(document).scrollTop());
		$(".foto_principal").show("slow");
	});

	$(".foto_principal").click(function(){
		$(".foto_principal").hide("slow");
	});
});

$(function(){
	$(".imgmapa").click(function(){
		var im = $(this).attr("src");
		$(".foto_principal img").attr("src", im);
//		$("#div_foto").css("top", $(document).scrollTop());
		$(".foto_principal").show("slow");
	});
});

// menus
$(function(){
	$("#logo").click(function(){
		window.location="index.html";
	});

	$("#menu ul li a img").mouseover(function(){
		var n = $(this).attr('src');
		var o = $(this).attr('altObj');

		$(this).attr('src', o);
		$(this).attr('altObj', n);

	}).mouseout(function(){
		var n = $(this).attr('src');
		var o = $(this).attr('altObj');

		$(this).attr('src', o);
		$(this).attr('altObj', n);
	});
});

// artigos
$(function(){
	$("#artigos ul li").click(function(){
		var o = $(this).attr('idObj');
		window.location="artigos.html?obj="+o;
	});
});

$(function(){
	$(".lista ul li").click(function(){
		var o = $(this).attr('idObj');
		window.location="artigos.html?obj="+o;
	});
});
