// GLOBAL VARS
var docClickIndex = null;

function jQueryInit()
{
	
	// REDESIGN CORRECTION
	if($('#contentPrint .asSubMenu').html() == null && $('#contentPrint .homePage').html() == null)
	{
		$('#contentPrint').css({padding:"8px 16px 16px 16px"});
	}
	
	if($('#contentPrint .homePage').html() != null)
	{
		$('#contentPrint').css({backgroundImage:"none"});	
	}
	
	// INPUT BUTTON 
	$(":button").addClass('inputButton');
	$(":submit").addClass('inputButton');
	$(":reset").addClass('inputButton');
	
	// NOTICIAS NAVIGATION TOP/BACK
	$('.pageControl img').mouseover(
		function(){
			$('.btnInTexter').html($(this).attr("alt"));
		}).mouseout(function(){$('.btnInTexter').html('&nbsp;');});
	
	// AGENDA
	
	$('.horaFim').each(
		function(){
		if($(this).html() == "")
		{
		
		 $(this).remove();
		}
	});
	
	// FORMS TABLE ZEBRA
	$('.form-table tr:odd').css({backgroundColor:"#EEEEEE"})
	
	// DOWNLOADS SHOW/HIDE
	$('.moreInfoDoc').click(function(){
		var numCount = $('.moreInfoDoc').index(this);
		
		//$($('.moreInfoDoc')).
	});
	
	
	// MENU
	$('.nivel3Li').parent().parent().addClass('as3Nivel');
	$('#menu a').click(
		function(){
			$(this).blur();
	});
	
	
	//Flash detection
	try	
	{		
		DetectFlash();
	}catch(e){ }
	
}