  $(document).ready(function() {
  
    $("#menu").find("li").each(
      function(i) {
        //add down arrow ELSE add side arrow
        if(($(this).parent().parent().get(0).tagName == 'TD')&&($('> ul', this).length > 0)){
          $(this).css({'background-image' : 'url(http://www.wmgamers.com/images/h_arrow_black.gif)', 'background-position' : 'right bottom'});
        }else if($('> ul', this).length > 0){
          $(this).css({'background-image' : 'url(http://www.wmgamers.com/images/v_arrow_black.gif)'});
        }
      }
    );

    $("#menu ul li").hover(
      function() {
        $('> ul', this).fadeIn("fast");
        //$('> ul', this) .css({'display' : 'block'});
      },
      function () {
        $('> ul', this) .fadeOut("fast");
      }
    );
  });