$(document).ready(function() {
    $("#fadebox").fadeIn("slow");
    $("#bgStart").fadeIn("slow");
    $("#rollbox").animate({"width": "264px"}, "fast");    
});

$(document).ready(function() { 
    $("a").click(function() {
         $("li.active").animate({"margin-left": "0px"}, "fast");
    });
});


$(document).ready(function() { 
$("#leftcolumn a").click(function(){
  $("#rollbox").animate({"width": "0px"}, "slow");
  $('#fadebox').fadeOut("slow");
  
}); });

$(document).ready(function() { 
$("li.navmainStandardLevel_2").click(function(){
  $(this).animate({"margin-left": "14px"}, "fast");
  $("#fadebox").fadeOut("slow");
}); });


window.onbeforeunload = function () {
   // stuff do do before the window is unloaded here.
}
