$(function() {
  $("#primary li").each(function(i){
    $(this).bind("mouseenter",function(){
      $(this).addClass("dwell");
      $('#primary ul.links').css('height','500px');
    });
    $(this).bind("mouseleave",function(){
      $(this).removeClass("dwell");
      $('#primary ul.links').css('height','26px');
    });
  });
});

