function changeElem(id){
    $('#hide'+id).toggle(300);
}

$(document).ready(function(){
$(".foto_top").hover(
  function () {
    var zi = 10;
    $(this).css("z-index",zi);
    $(this).prevAll().each(function(){
        zi = zi - 1;
        $(this).css("z-index",zi);
    });
    $(this).nextAll().each(function(){
        zi = zi - 1;
        $(this).css("z-index",zi);
    });
  },
  function () {
   // $(this).removeClass("hover");
  }
);
});
