
jQuery(document).ready(function($) {

		// Animation effect
		$("ul.sf-menu").superfish({
			animation: {height:'show'},
			delay: 0		
		});
		
		if (($.browser.msie && $.browser.version < '8')) { // Stop animation for IE7 / IE6
			$("ul.sf-menu").superfish({
				speed: 1 //Instant
			});
		}
	
	$('#hero').cycle({ 
	    fx: 'fade',
	    speed: 'fast',
	    timeout: 4000,
		 random: 1
	});

	
});
