
$(document).ready(function()
{
    //$('.topMenu:not(:first)').hide();
    $('.topMenu').hide();
    $("a.showMe").mouseover(function()
    {
      $('.topMenu').fadeOut("slow");
      $($(this).attr("href")).fadeIn("slow");
    });
    $('body').click(function()
    {
      $('.topMenu').hide();
    });
//    $('.topMenu').mouseout(function()//""
//    {//not working
//      $('.topMenu').hide();
//    });    
});
function setAnchor()
 {
    var myFile = document.location.toString();
    if(myFile.match($(this).attr("id")))
        $(this).attr("class","selected");
}
