function init()
{
    /*$(".st").click(function() 
    {  
        window.location = $(this).find(".stTitle a:first").attr("href");  
    });  */

    $("div.st").hover(
      function() {
        $(this).addClass("hover");
      },
      function() {
        $(this).removeClass("hover");
      }
    );
}