$(document).ready(function() {
  var curid;
  $("#categories > li").click(
    function () {
      if (this.id!=curid)
      {
        $("#categories li ul").slideUp("fast");
        $("#"+this.id+" ul").slideDown("fast");
        curid=this.id;
      }
    }
  );
  
  $('.nudge').hover(function() { //mouse in
    $(this).stop().animate({ paddingLeft: '15px', color: '#3963FF' }, 300);
  }, function() { //mouse out
    $(this).stop().animate({ paddingLeft: 0, color: '#666666' }, 300);
  });
  
  $('.nudge2').hover(function() { //mouse in
    $(this).stop().animate({ paddingLeft: '10px', color: '#3963FF' }, 200);
  }, function() { //mouse out
    $(this).stop().animate({ paddingLeft: 0, color: '#666666' }, 200);
  });
  
  $('#headerMenuUL li a').hover(function() {
    $(this).stop().animate({ top : "-=5px", height: "39px" }, 100);            
    }, function() {
    $(this).stop().animate({ top : "5px", height: "34px" }, 100);
  });

});
