$(document).ready(function(){
			
	pageLoadFunctions();
	
	$("#nav_workshop li").click(function(event) {
    	$tgt = $(event.target);
    	
    	if($tgt.is('a.sub_link')){
    		window.location  = event.target.href;
    	}
    	else {
			$(this).children("ul").toggle();
			event.preventDefault();
		}
   }); 
   
   	
	
});
