// initialise plugins
jQuery(function(){
			jQuery('ul.sf-menu').superfish({
      dropShadows: false, //optional, but I prefer this option disabled.
      autoArrows: false
	});
});

jQuery(document).ready(function(){
	//Hide (Collapse) specific containers on load
	jQuery(".nav-ul").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	jQuery(".trigger").click(function(){
		jQuery(this).toggleClass("downarrow").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
});

jQuery(document).ready(function(){
	//Switch the state of the list by adding 'selected' class
	jQuery(".select").click(function(){
		jQuery(this).toggleClass("selected");
		
	});
});

