// JavaScript Document

jQuery.noConflict();

(function($) { 
  $(function() {
	// jquery scripts run inside noconflict construct for silverstripe compatibility
	
	$('ul.sf-menu').superfish({  
		delay: 500,
		animation: {height:'show'},  // slide-down animation 
        speed: 'fast',
        autoArrows: false,
		dropShadows: true
	});

  });
})(jQuery); 