// JavaScript Document

$(document).ready(function(){
		//at first hide the sub lists (if javascript is disabled all sublists remain usable)
		$("#leftNavigation>li>ul").hide();
		$("#schedules #leftNavigation>li.schedules>ul").show();
		//when a link (that is a child of #vnav) is clicked call a function
		//$("#leftNavigation a").click(function(){
			//if the clicked link has a sibling ul, stop following the link and slide open (or close) the ul
			//if($(this).next("ul").length > 0) {
//				$(this).next("ul").slideToggle();
//				return false;
//			}
		//});
});

