// menubar.js  makes things more funky
$(document).ready(function() {
 $("#leftnav a").hover(					   
      function () {$(this).animate({backgroundColor: "#949494"},150);}, 
      function () {$(this).stop(); $(this).animate({backgroundColor: "#667894"},150);}
    );
 
  $("#secondaryleftnav a").hover(
      function () {$(this).animate({backgroundColor: "#949494"},150);}, 
      function () {$(this).stop(); $(this).animate({ backgroundColor: "#660000"},150);}
    );
 
 $("#mainnav a").hover(
      function () {$(this).animate({backgroundColor: "lightgrey"},150);}, 
      function () {$(this).stop(); $(this).animate({ backgroundColor: "#880726"},150);}
    );
 
 
 });


$(document).ready(function() {
 $("#leftnav a").hover(					   
      function () {$(this).animate({backgroundColor: "#949494"},800);}, 
      function () {$(this).stop(); $(this).animate({backgroundColor: "#667894"},50);}
    );
 
  $("#secondaryleftnav a").hover(
      function () {$(this).animate({backgroundColor: "#949494"},800);}, 
      function () {$(this).stop(); $(this).animate({ backgroundColor: "#660000"},50);}
    );
 
 $("#mainnav a").hover(
      function () {$(this).animate({backgroundColor: "lightgrey"},800);}, 
      function () {$(this).stop(); $(this).animate({ backgroundColor: "#880726"},50);}
    );
 
 
 });

