//(c) CodeCrafters.co.uk, Mohammed Seedat 2010 
//Simple menu dropdown nothing fancy
jQuery.fn.simpleDropdown = function() {
  this.each(function(){
    $("li", this)
    .mouseenter(function(){
      $("a:first", this).addClass("hovering");
      $("ul", this).show();
    })
    .mouseleave(function(){
      $("a:first", this).removeClass("hovering");
      $("ul", this).hide();
    });  
  });
};
