// starting the script on page load
$(document).ready(function(){
	var spath = document.location.pathname;
	spath_ar = spath.split('/');
	if (spath_ar[1]) {
		$("ul[id*='"+spath_ar[1]+"']").slideToggle(500);
	}
	return false;
});
