jQuery(function(){
	jQuery('ul.sf-menu').superfish({ 
		delay:       250,                            // delay on mouseout 
		animation:   {opacity:'show'},  			// fade-in and slide-down animation 
		speed:       'fast',                          // faster animation speed 
		dropShadows: false                            // disable drop shadows 
	}); 
	jQuery("a.topMenuItem").click(function(){
		jQuery(this).toggleClass('open');
	}); // toggle 'open' class for top menu item links so we can use css to change direction of the arrow in the link
	jQuery('div#main:has(div#flashNav)').find('div#content').css({ // if #flashNav is present, change #content div accordingly
		'padding-top' : '274px'
	});
	jQuery('#brandSlideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 6000,
		speed: 2000
	});

});
