$(document).ready(function(){

	$('#topo #boxBusca #busca_palavra').inover();
	$('#rodape #boxBusca2 #busca_palavra2').inover();
	$('#topo #menuTopo ul.menu').superfish({ pathClass: 'current', autoArrows: false, dropShadows: false, hoverClass: 'current' });
	$('#lateral #blocomaisAbas li a:first').each(function(){
		$(this).parent().addClass('atual');
		$($(this).attr('href')).show();
	});
	$('#lateral #blocomaisAbas li a').click(function(){
		$('#lateral #blocomaisAbas li').removeClass('atual');
		$(this).parent().addClass('atual');
		$('#lateral #blocomais .blocomais').hide();
		$($(this).attr('href')).show();
		return false;
	});
	$('#blocomais .blocomais ul').each(function(){
		$z = $(this).find('li:last').css({'border':'none'});
	});
	$('#blocomais .blocomais li a').hover(function(){
		$(this).parent().addClass('hover');
	}, function(){
		$(this).parent().removeClass('hover');
	});

	$('#homeUltimas li:last').css({'border':'none'});
	/* HOME - FIM */
	
	/* NOT�CIA - IN�CIO */
	$('#noticiaAbas li:first').addClass('atual');
	$('#internaNoticia .nBloco:first').show();
	$('#noticiaAbas li a').click(function(){
		$('#noticiaAbas li').removeClass('atual');
		$(this).parent().addClass('atual');
		$('#internaNoticia .nBloco').hide();
		$($(this).attr('href')).show();
		return false;
	});
	$('#opcoesAbas li:first').addClass('atual');
	$('#noticiasOpcoes .oBloco:first').show();
	$('#opcoesAbas li a').click(function(){
		$('#opcoesAbas li').removeClass('atual');
		$(this).parent().addClass('atual');
		$('#noticiasOpcoes .oBloco').hide();
		$($(this).attr('href')).show();
		/*if($(this).attr('href') == '#bImprima'){
			$url = $(this).attr('lang');
			window.open($url);
			//alert("descomente o window.open do jquerys.js e altere o lang da tag A pra a url desejada!!!\n"+$url);
		}*/
		return false;
	});
	$('#tamanhoTexto img').click(function(){ FontSize($(this).attr('class')); });
	$('#blocoultimas li:last').css({'border':'none'});
	$('#blocovejatambem li:last').css({'border':'none'});
	/* NOT�CIA - FIM */
	
	/* VIDEOS - IN�CIO */
	$('#videos #videosOpcoes li a:first').addClass('atual');
	$('#videos #videosLista ul.lista:first').show();
	$('#videos #videosOpcoes li a').click(function(){
		$('#videos #videosOpcoes li a').removeClass('atual');
		$(this).addClass('atual');
		$('#videos #videosLista ul.lista').hide();
		$($(this).attr('href')).show();
		return false;
	});
	/* VIDEOS - FIM */
	
	/* BUSCA - IN�CIO */
	//$('#buscaDetalhes select').selectbox();
	/* BUSCA - FIM */
	
	/* BLOG - IN�CIO */
	$procura = 1;
	$('#arquivoBlog li a.atual').each(function(){
		$procura = 0;
	});
	if($procura == 1){
		$('#arquivoBlog li a:first').addClass('atual');
	}
	$('#arquivoBlog li a.atual').each(function(){
		$(this).next().show();
	});
	$('#arquivoBlog li a').each(function(){
		$p = $(this).next();
		if($(this).next().find('li:eq(0)').html()){
			$(this).click(function(){
				$('#arquivoBlog li a.atual').removeClass('atual');
				$('#arquivoBlog ul ul').hide();
				$(this).addClass('atual').next().slideDown();
				return false;
			});
		}
	});
	/* BLOG - FIM */
	
	/* CINEMA - INICIO */
	/*$('#cinemaFiltro select').selectbox().each(function(){
		var $sel = $(this);
		$(this).prev().find('li').click(function(){
			document.location.href = '?p=cinema&sala=' + $sel.val();
		});
	});*/
	/* CINEMA - FIM */
});