﻿
$(document).ready(function () {
    $("ul.topnav li").hover(function () {
        $(this).find("ul").stop(true, true).slideDown('fast').show();
        //$(this).addClass("subhover");
    }, function () {	//On Hover Out
        $(this).find("ul").slideUp('slow');
        //$(this).removeClass("subhover"); //On hover out, remove class "subhover"
    });
});

