$(document).ready(function(){
	// Expand/Collapse Green Meter Help
	/*$("#help").hide();*/
	$('#togglehelp').click(function(){
			$("#help").slideToggle("fast");
			return false;
		})

	// Find the currently visible SubNav and set curSelectedSubNav
	var id = $(".selected[@id^='mainNav_']").attr("id");
	if (id) curSelectedSubNav = id.substr(8);
});
