$(document).ready(
	function() {
		$('ul.nav').superfish({ 
			hoverClass:  'over',
			delay:       100,                            // one second delay on mouseout 
			animation:   {height: 'toggle'},  // fade-in and slide-down animation 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  false                           // disable generation of arrow mark-up 
		});
		$('.quicklink').superfish({ 
			hoverClass:  'over',
			delay:       100,                            // one second delay on mouseout 
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  false                           // disable generation of arrow mark-up 
		});
		
		$('.slideshow').cycle({
			delay:  800, 
			speed:  500 
		});
		
		$('.promoIcon a').hover(
		  function () {
			$(this).fadeTo(0,0.6);
		  },
		  function () {
			$(this).fadeTo(0,1.0);
		  }
		);
	}
);
