function popup(){
	//$("#floater").load(function() {
		$("#banner_popup").show("fade");
		var interval = setTimeout(fecha_banner, 15000);
	//});
	
	$(".linksFechar").click(function(){
		fecha_banner();
	})
}
	
function fecha_banner(){
	$("#banner_popup").hide("fade");
}


