$(document).ready(function(){
  $("ul#navigation").supersubs({
    minWidth: 18, // Minimum width of sub-menus in em units
    maxWidth: 27, // Maximum width of sub-menus in em units
    extraWidth: 1 // Extra width can ensure lines don't sometimes turn over due to slight rounding differences and font-family
  }).superfish({
		delay	: 1000, // The delay in milliseconds that the mouse can remain outside a submenu without it closing
		animation: {opacity:'show'}, // An object equivalent to first parameter of jQueryâ€™s .animate() method
		speed: 'normal' // Speed of the animation. Equivalent to second parameter of jQueryâ€™s .animate() method
  });
});
