



// code to execute when document loads
jQuery(document).ready(function(){
	// BEGIN initialize nav
	jQuery('ul#home')
		.supersubs({ 
			minWidth:    10,   // minimum width of sub-menus in em units 
			maxWidth:    25,   // maximum width of sub-menus in em units 
			extraWidth:  1     // extra width can ensure lines don't sometimes turn over
		})
		.superfish({
			animation	: {opacity:'show'},
			speed		: 5,
			dropShadows : false,
			delay		: 500
		});
		/* GL: changed this to speed up menu displaying.
		.superfish({
			animation	: {opacity:'show'},
			speed		: 'slow',
			dropShadows : true,
			delay		: 500
		});*/ 
	// END initialize nav
});  // jQuery(document).ready(function(){

