jQuery(document).ready(function(){
	jQuery('#destinations_slideshow').slideshow({
		timeout: 10000,
			
		// When a new next slide shows, highlight the appropriate tab
		on_change_callback: function(new_item_index)
		{
		jQuery('#destinations_tabs li')
				.removeClass('active')
				.eq(new_item_index).addClass('active');
			}
		});
		// Skip slideshow if user clicks on a tab
	jQuery('#destinations_tabs a').bind('click', function()
		{
		jQuery('#destinations_slideshow').slideshow_change_item(
				jQuery(this).parent().index()
			);
			return false;
		});
		
});		
