var imgs;

$("#gallery-42").prepend("<div id=img-preview></div>");
$(".gallery-item").each(
						function(){
							$("#img-preview").append("<img class=currImg src="+$(this).find("a").attr("href")+" alt="+$(this).find("img").attr("alt")+" />");
							$(this).find("a").removeAttr("href");
							});

$("#img-preview img").not("#img-preview img:eq(0)").hide();
$("#img-preview img:eq(0)").addClass("current");

//dodaj obsluge zdarzen

$(".gallery-item").hover(
						function(){
									$(this).fadeTo('fast', 0.8);
								  },
						function(){
									$(this).stop();
									$(this).fadeTo('slow', 1);	
								  });
$(".gallery-item").click(function(){
								  //console.log($(this).index());
								 // setTimeout(function(){$(this).hide()}, 300)
								 if(!($(".currImg:eq("+$(this).index()+")").hasClass("current"))){
									 $(".currImg.current").fadeTo(800,0, function(){$(this).removeClass("current")});
									 $(".currImg:eq("+$(this).index()+")").fadeTo('normal', 1, function(){$(this).addClass("current")});
								 		}
								  });
