/**
 * @author sean.hardaker
 * compatible with JQuery 1.4
 */
$(document).ready(function(){
	
/**
 * Tabs 
 * plugin jquery-tabs-ui-1.7.2.custom.min.js
 */
var $tabs = $('#tabs').tabs();
//hover states on the static widgets
$('#dialog_link, ul#icons li').hover(
	function() { $(this).addClass('ui-state-hover'); }, 
	function() { $(this).removeClass('ui-state-hover'); }
);


	$('#vroomlink').click(function() { // bind click event to link    	
		$tabs.tabs('select',5); // switch to fourth tab
    	return false;
	});
	$('.moreDisneyCruises').click(function() { // bind click event to link    	
		$tabs.tabs('select',2); // switch to third tab
    	
	});
	$('.tab3').click(function() { // bind click event to link    	
		$tabs.tabs('select',3); // switch to fourth tab
    	
	});
	$('.tab2').click(function() { // bind click event to link    	
		$tabs.tabs('select',2); // switch to third tab
    	
	});
	

/**
 * Slideshow
 * plugin jquery.cycle.lite.1.0.min.js * 
 */

$('.itin_slideshow').css('display','block').cycle({      fx:     'fade',	        speed:  'medium'  	});

			
			
			
			
			
});
