$(document).ready( function() {
	$("ol.dropdown_navigation").find("li").each( function() {
		if ($(this).find("ol").size() > 0) {
			$(this).addClass("has_more");
		}
	});

	$("ol.dropdown_navigation").find("li").hover( function() {
		$(this).addClass("hover");
		$(this).children("a").addClass("hover");
		$(this).children("ol").css("top", "1px").css("left", $(this).width() + "px").show();
	},function(){
		$(this).children("ol").hide();
		$(this).children("a").removeClass("hover");
		$(this).removeClass("hover");
	});

	//Special cases for Static/Simple navigation
	var currMapsCanadaSection = $("#energy_map_menu_section").val();
	if (currMapsCanadaSection) {
		$("#"+currMapsCanadaSection).show();
	}

});