function vky(){

}
$(document).ready(function(){
    $(".1").hide();
    $("img.0").mouseover(function(){
  $(this).next("img").show();
  $(this).hide();
  
});

 $(".1").mouseout(function(){
  $(this).hide();
  $(this).prev("img").show();

});
 
   // $(".0").hide();

});
