jQuery(document).ready(function(){

// ad
	$tabs = jQuery("#tab > ul")
//	.tabs({ fx: [null, { width: 'show' }] })
//	.tabs({ fx: { opacity: 'toggle', duration: 'fast' } })
//	.tabs({ fx: { width: 'toggle',  opacity: 'toggle',  duration: 'fast' } })
	.tabs({ fx: { width: 'show',  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)});

});
