$(document).ready(function(){
		$('#cycle ul').cycle({
			fx: 'fade'
		}); 
		
    	$('.fg-button').hover(
    		function(){ $(this).removeClass('ui-state-default').addClass('ui-state-focus'); },
    		function(){ $(this).removeClass('ui-state-focus').addClass('ui-state-default'); }
    	);
		
		
		var $tabs = $('#tabs').tabs({ 
			select: function(event, ui){ window.location = ui.tab.href; },
			fx: { height: 'toggle', opacity: 'toggle', duration: 'normal' }
		});
		
		
});