$(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", 8000)
	.parent()
	.mouseover(function (){jQuery(this).find("> ul").tabs("rotate", null)})
	.mouseout(function (){jQuery(this).find("> ul").tabs("rotate", 8000)});
//tabs login
    $(".links_login").click(function(){
		$(".links_login").removeClass("active");						 
		$(".box_form_estrutura").hide();
		$("#"+this.id).addClass("active").parent().parent().find(".box_form_estrutura").show();;
	});

});
