jQuery(function($) {

  // $("ul.metropolis_subnav").parent().append("<span style='font-size:10px'>&#9660</span>"); Only shows drop down trigger when js is enabled - Adds empty span tag after ul.subnav
    
    $("ul.metropolis_topnav li").not(":animated").hover(function(event) { 
        $(this).addClass("metropolis_subhover"); //On hover over, add class "subhover"
        $(this).find("ul.metropolis_subnav").slideDown(100).show(); //Drop down the subnav on click
    }, function(){  //On Hover Out
        $(this).find("ul.metropolis_subnav").slideUp(80); //When the mouse hovers out of the subnav, move it back up
		$(this).removeClass("metropolis_subhover"); //On hover out, remove class "subhover"
    });
  $("ul.metropolis_subnav li:last-child").css({paddingBottom:"8px"});
  $("ul.metropolis_subnav li:first-child").css({paddingTop:"8px"});

});
