$(window).ready(function(){
    $("#sm li.pnt").click(function(){
        var href = $(this).find("a").attr("href");
        window.location = href;
    });
    $("#sm li.pnt").hover(function(){ $(this).addClass('hov') }, function(){ $(this).removeClass('hov') });
});
