$(document).ready(function() {

    $('a:has(img.imlb)').addClass("images");

    $('map > area').mouseover(function() {

      $("#shopv").html($(this).attr("svalue"));

    });

    $('map > area').mouseout(function() {

      $("#shopv").html("&nbsp;&nbsp;");

    });

    $('.image').each(function() {

      var asrc = $(this).attr("src");  

      $(this).wrap('<a href="'+asrc+'" class="ims"></a>');

    });

    $('.images').lightBox();

    $('.ims').lightBox();

    $('.imagea').lightBox();

});


