$(document).ready(function(){
        $(document).ready(function(){
                $(document).pngFix();
        });

   $(".position a").append("<em></em>");

   $(".position a").hover(function() {
           $(this).find("em").animate({opacity: "show", top: "-35"}, "fast");
           var hoverText = $(this).attr("title");
       $(this).find("em").text(hoverText);
   }, function() {
           $(this).find("em").animate({opacity: "hide", top: "-45"}, "fast");
   });

  $("a[@id^='s']").click(function(){
    var id     = $(this).attr("id");
    var number = id.slice(1, id.length);
    if (!number*1) return false;

    var imgObj = $("<img src=\"/templates/skin1/images/shops/"+number+".gif\">");
    imgObj.load(function(){
      $("#info div#panel"+number+" img").attr("src", this.src).width(this.width).height(this.height);
    });

    $("#info div#panel"+number).slideToggle("slow").siblings("#info div:visible").slideUp("slow");

    $(this).toggleClass("active");
    $(this).siblings(".position a").removeClass("active");
    return false;

  });
});