// JavaScript Document

// Init for Superfish Nav
$(document).ready(function() { 
   $('ul.sf-menu').supersubs({ 
            minWidth:    8,   // minimum width of sub-menus in em units 
            maxWidth:    26,   // maximum width of sub-menus in em units 
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
        }).superfish({			// call supersubs first, then superfish, so that subs are 
			autoArrows:  false	// not display:none when measuring. Call before initialising 
			});  				// containing tabs for same reason.
   $('#currentsubli').parent().parent().addClass('currentPageParent');

// Setup the jQuery cycle plugin for use on accommodation page slideshows

		$('#accommSlides').cycle({
			speed: 2000,
			timeout: 6000
		});
		
// Set up the jQuery Cycle plugin for the Home page slideshow

		$('#homeSlides').cycle({
		//	fx: 'scrollDown'
		//	fx:	'fade',
			speedIn: 4000,
			speedOut: 4000,
			timeout: 8000
			});	   


}); 




