// JavaScript Document

$(document).ready( function(){
							
	$('#bt_notLidas').click( function(){
			$('#not_Lidas').fadeIn()
			$('#clima').hide()

	})
	
	$('#bt_clima').click( function(){
			$('#not_Lidas').hide()
			$('#clima').fadeIn()

	})
	
	
	
	
	
	$(".mapa1").mouseover(function() {
        $(this).next("div").fadeIn();
		
	});
	
	$(".mapa1").mouseout(function() {
        $(this).next("div").fadeOut();
	});
	
	
		
	//$(".mapa1").hover(function(){
		//$(".mapa_box1").fadeIn("slow");
		//$("this").next("div").fadeIn("slow");
		//});
		
		
	//$(".mapa1").mouseout(function(){
		//$(".mapa_box1").fadeOut("slow");
		//});
	





	
	//$('table.tabelas tbody tr:odd').addClass('odd');

    //$('table.tabelas tbody tr:even').addClass('even');

} )
