$(document).ready(function(){
    Whl.Site.initPortalPage();
    $("a").hover(
              function () {
                    $(this).addClass("hover");
              },
              function () {
                    $(this).removeClass("hover");
              }
    );
    $(".ok").click(function(){
   		$(this).parent().children("div:first").toggle();
    });
});




