$(document).ready(function(){
    $(" #navLeft > ul ").css({display: "none"}); // Opera Fix
    $("#navLeft li").hover(
      function(){
          $(this).addClass("hovered");
          $(this).find('ul:first').css({visibility: "visible", display: "none"}).show("150").addClass("nothovered");
      }, 
      function(){
          $(this).find('ul:first').css({visibility: "hidden"});
          $(this).removeClass("hovered");
          $(this).removeClass("nothovered");
      }
    );

    $(" #navRight > ul ").css({display: "none"}); // Opera Fix
    $("#navRight li").hover(
      function(){
          $(this).addClass("hovered");
          $(this).find('ul:first').css({visibility: "visible", display: "none"}).show("150").addClass("nothovered");
      }, 
      function(){
          $(this).find('ul:first').css({visibility: "hidden"});
          $(this).removeClass("hovered");
          $(this).removeClass("nothovered");
      }
    );

    var loc = window.location.toString().split("/")
    loc = loc[loc.length - 1]
	//alert(loc);
    $("#navLeft li a[href=\""+loc+"\"]").addClass("selected");
    $("#navRight li a[href=\""+loc+"\"]").addClass("selected");
	
	
});


