// Show Sub Menu Drop Down
var SubMenuID = $("#secondaryNavigation div").attr("id");
var oMenuBar;

if (SubMenuID)
{
	YAHOO.util.Event.onContentReady(SubMenuID, function () 
	{
		oMenuBar = new YAHOO.widget.MenuBar(SubMenuID, { autosubmenudisplay: true, hidedelay: 750, lazyload: true });
		oMenuBar.render();
	});
}

/* cheeky script to set the current secondary menu item as yui menu doesn't seem to do it */
$(document).ready(function()
{
	$("#secondaryNavigation li.current").parent().parent().parent().parent().addClass("current");
});



