/*
* This little script will expand the submenu for the page selected
*/

jQuery.noConflict();

/**
* This will run when the current page is ready
* It will check for a section URL parameter and then show the selected menu section
*/
jQuery(document).ready(function($){
	//check for a url param called section
	var str_cur_section = $(document).getUrlVars()['s'];
	if(str_cur_section){		
		//alert("section: "+ str_cur_section);
		//now we want to show the specified menu UL
		$("#"+str_cur_section).slideDown("slow");
	}
	
});
