	function addListEvents() { 
		$('#mainmenu li a').click(function() {
			var kids =  $(this).parent().children("ul");
			if ($(kids).length > 0 && $(kids).is(".hide"))
			 		$(kids).removeClass("hide"); 
			else if ($(kids).length > 0 && !$(kids).is(".hide"))
			 		$(kids).addClass("hide"); 
			if ($(this).attr("href").length == 0 ) 
				return false; 
		}); 
		
		$('#mainmenu li').each(function() {
			if ($(this).children().length > 0) 
				$(this).css({cursor:"pointer"}); 
		}); 
		
		
	}
	
	function unwind(href) {
		$("a").each(function(){
			if ($(this).attr("href") == href )  {
				$(this).parents("ul").each(function(){$(this).removeClass("hide");}); 				
				$(this).parent().children("ul").each(function(){ $(this).removeClass("hide");}); 				
				$(this).addClass("selected"); 
			}
		}); 
	}
	
	
/*
	$(document).ready(function () {
			if ( $.browser.msie ) {
				$('#mainpanel').css("margin","0px"); 
				$('#content').css("margin-left","100px"); 
				$('#title').css("margin-left","100px"); 
			}
	}); 
	*/