$(document).ready(function() {

  $("#subNav li").hover(
      function () {
        $(this).find("ul:eq(0)").show();
		$(this).find("a").css("background","#141414");
		$
      }, 
      function () {
        $(this).find("ul:eq(0)").hide();
		$(this).find("a").css("background","transparent");
      }
    );

});
