var obj = null;
   function checkHover() {
      if (obj) {
         obj.find('ul').fadeOut('normal');
      } //if
   } //checkHover

   $(document).ready(function() {
   	  $('#leftmenu > li').find('ul').css("display", "none");
	  $('#leftmenu > li').find('a:first').each(function() {
										 if (window.location.toString().match($(this).attr("href").toString())!==null) {
											$(this).parent().parent().find('ul').show();
											$(this).css("text-decoration", "underline");
											$(this).css("color", "#6f96ca");
											 }
										 });
	  $('.submenu > li').find('a').each(function() {
										 if (window.location.toString().match($(this).attr("href").toString())!==null) {
											$(this).parent().parent().show();
											$(this).parent().parent().parent().find("a:first").css("text-decoration", "underline");
											$(this).parent().parent().parent().find("a:first").css("color", "#6f96ca");
										 }
										 })

   });
