﻿// JScript File

//this doesn't work in ie
$(document).ready(function(){
  


});


function SetupLeftMenu()
{
 $("#nav-left > dd > a").click(function(event){
   event.preventDefault();
    //event.returnValue = false;  

  if (jQuery.browser.msie)
    {
        $("#nav-left > dd > a").next().hide();
        $(this).next().show();   
    }
    else
    {
        $("#nav-left > dd > a").next().hide("slow");
        $(this).next().show("slow");   
    }

 });


}

window.onload = function(){ SetupLeftMenu() }

