﻿
$(document).ready(function() {
	$("#nav").dropSlideMenu({
		indicators: true, // adds a div to the list items for attaching indicators (arrows)
		clickstream: true, // highlights the clickstream in a menu by comparing the links to the current URL path
		openEasing: "easeOutQuad", // open animation effect
		closeEasing: "easeInQuad", // close animation effect
		duration: 300, // speed of drop down animation (in milliseconds)
		delay: 300, // delay before the drop down closes (in milliseconds)
		hideSelects: true // hide all select elements on the page when the menu is active (IE6 only)
	});
});

