  function showscroll() {
          ($(".box").is(":animated")) ? window.setTimeout('showscroll()',500) : $("body").css("overflow","auto");
     }

$(document).ready(function(){
     $(".tab img").mouseover(function(){
          $("body").css("overflow","hidden");
          $(".tab img").each(function(){
               $(this).attr("src" , $(this).attr("id")+".jpg");
          })
          $(".box").slideUp("slow");
          $(this).attr("src" , $(this).attr("id")+"0.jpg");
          $(".box").slice(parseInt($(this).attr("id").slice(1,2))-1,parseInt($(this).attr("id").slice(1,2))).slideDown("slow",showscroll());
     });
})