$(document).ready(function(){
$(".katalogitem").hover(function(){
$(this).find(".mainpic").hide();
$(this).find(".pic").show();
},
function(){
$(this).find(".pic").hide();
$(this).find(".mainpic").show();  
});
});
