	$(document).ready(function()
	{
		if ($("div.content_product").length > 1 && $("ul#level4").length > 0)
		{
			$("ul#level4").empty();
			$("div.content_product").each(function()
			{
				var id = $(this).attr("id");
				var temp = $("#" + id + " h2:first").html();
				$("ul#level4").append("<li><a href=\"#" + id + "\" title=\"" + temp + "\">" + temp + "</a></li>");
			});
		}
		else if ($("ul#level4").length > 0)
		{
			$("ul#level4").remove();
		}
		
		$("div.product").each(function()
		{
			var id = $(this).attr("id");
			$(this).hover(
				function() { $("#" + id + " a img").attr("src","/de/wLayout/design/img/icon_" + id + "_on.png"); },
				function() { $("#" + id + " a img").attr("src","/de/wLayout/design/img/icon_" + id + "_off.png"); }
			);
		});
	});