jQuery(document).ready(function ()
{
	//Resize
	jQuery(window).resize(ChangeResolution); 
	ChangeResolution();
	
});

function ChangeResolution()
{
	var obj  = jQuery("#rodape")
	var objW = obj.width();
	var winW = jQuery(window).width();
	obj.width("100%");
	/*jQuery("#subheader_wrapper").css("width", "");*/
	if(winW < 999)
	{
		obj.width("999px");
		/*jQuery("#subheader_wrapper").css("width", "551px");*/
	}
}

$(document).ready(function(){
// ad
	$tabs = $("#tab > ul")
//	.tabs({ fx: [null, { width: 'show' }] })
//	.tabs({ fx: { opacity: 'toggle', duration: 'fast' } })
//	.tabs({ fx: { width: 'toggle',  opacity: 'toggle',  duration: 'fast' } })
	.tabs({ fx: { width: 'toggle',  opacity: 'toggle',  duration: 'fast' } })	
  
	.tabs("rotate", 5000)
	.parent()
	.mouseover(function (){jQuery(this).find("> ul").tabs("rotate", null)})
	.mouseout(function (){jQuery(this).find("> ul").tabs("rotate", 5000)});
	
});