// <![CDATA[

$(document).ready(function() {
	
	$("#menu_topo li").click(function() {
			url = $("> a", this).attr("href");
			window.location = url;
	});
	
	$("#frm_newsletter").submit(function() {
		var email = $("#email").val();
		var lg = $("#lg").val();
		window.open('newsletters.php?lg='+lg+'&amp;email='+email, 'news_resultado', 'width=317,height=100,status=yes,resizable=yes,scrollbars=yes');
		return false;
	});
	
	$(".item_galeria").click(function() {
		var imagem = $(this).attr("href");
		var atributos = 'a';
		/*
		$.ajax({
			type: 'POST',
			url: 'atributos_imagem.php',
			data: {img: imagem},
			dataType: 'html',
			success: function(retorno) {
						atributos = retorno;
						$("#listagem").html('never n ever');
						//window.open('pop_img.php?img='+imagem, 'imagem', retorno);
					},
			beforeSend: function() {
						$("#listagem").html('No more photos');
					}
			
		});
		*/
		window.open('pop_img.php?img='+imagem, 'imagem', atributos);
				
		return false;
	});
	

});

// ]]>
