// JavaScript Document
//$(document).ready(initNovidades());
function initNovidades(){
	
	location.href="#";
	
	$('.setaNavegacaoLD').corner("bevel tr br 14px;");
	$('.setaNavegacaoLE').corner("bevel tl bl 14px;");
	
	$(".listaMeses").hide();

	$(".linkAno a").click(
	
		function() {
			
			$(this).parent().parent().children('.listaMeses').toggle(300);
			
			if($(this).children('.textoArquivoAno').children('span').css("font-size")=="14px"){
			
				$(this).children('.setaArquivo').children('.imgSetaArquivo').css("background-image", "url(images/seta3.png)");
				$(this).children('.textoArquivoAno').children('span').css("font-size", "20px");
				$(this).children('.textoArquivoAno').children('span').css("top", "-2px");
			
			}else{
				
				$(this).children('.setaArquivo').children('.imgSetaArquivo').css("background-image", "url(images/seta4.png)");
				$(this).children('.textoArquivoAno').children('span').css("font-size", "14px");
				$(this).children('.textoArquivoAno').children('span').css("top", "0px");
				
			}
		
			Cufon.replace('.fonte700', {hover: true, fontFamily:"Museo700"});
			
		}
	
	);
	
	$(".botaoProxima a").hover(
	
		function() {
			
			$(this).children('.setaNavegacaoLD').css("background-color", cor2);
			
		},
	
		function() {
			
			$(this).children('.setaNavegacaoLD').css("background-color", cor1);
			
		}
	
	);
	
	$(".botaoAnterior a").hover(
	
		function() {
			
			$(this).children('.setaNavegacaoLE').css("background-color", cor2);
			
		},
	
		function() {
			
			$(this).children('.setaNavegacaoLE').css("background-color", cor1);
			
		}
	
	);

}
