$(document).ready(function(){
  $("img.thumb").hover(
    function() {
      $(this).parents("div.pictures").find("img.pix").attr("src", $(this).attr("src").replace("thumb/", "medium/"));
    },
    function(){
      
    }
  )
});