function init() {
	var domsel="ul.fotogaleria li";
	var domse2=".galeriaFoto";
	$(domsel).each(function() {
		$(domse2).prepend('<img src="/files/images/sortiment/' + $(this).attr("class") + '.jpg" alt="' + $(this).attr("class") + '"  class="' + $(this).attr("class") + '" id="' + $(this).attr("id") + '"/>');
		})
	$(".galeriaFoto img:not(#active)").hide();	
	$("ul.fotogaleria li").hover(function() {
		$(".galeriaFoto img:not(." + $(this).attr("class") + ")").hide();	
		$(".galeriaFoto img." + $(this).attr("class") + "").fadeIn();
   	});
	}
$(document).ready(function() {
  	init();
 });

