$(function() {

$('#banner > ul').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 6000);//comment off this line to remove effects
//$('#banner > ul').tabs().tabs('rotate', 6000); //use this line to remove effects
$('#banner').tabs({ 
	
	fx: { opacity: 'toggle', duration: 'fast' },//delete this line if you want to remove effects
	
     select: function(ui){
	      changeTabs(); },
	 show: function(ui) {
		  changeTabs();}
	 });
	
		//Change tabs
		function changeTabs(){
			 
				if ($('#fd-symphony').is(':visible')){
					
					$('#banner > ul').removeClass("tab3");
					$('#banner > ul').addClass("tab2");
					 }
				else if ($('#fd-golfcourse').is(':visible')){
					$('#banner > ul').removeClass("tab2");
					$('#banner > ul').addClass("tab3"); }
				else {
					$('#banner > ul').removeClass("tab3");
					$('#banner > ul').removeClass("tab2"); }
		}
});