<!--

function initMenu() {
	var subMenus = $(".subMenu");
	$(subMenus).find("li:last-child").append('<img src="/bilder/meny/bottomLeftCorner.gif" class="bottomLeft" alt="" width="10" height="10" /><img src="/bilder/meny/bottomRightCorner.gif" class="bottomRight" alt="" width="10" height="10" />');

	$(subMenus).parent().hover(function() {
			$(this).find(".subMenu").show("fast");
		},
		function() {
			$(this).find(".subMenu").slideUp("fast");
		});
		}
			
jQuery(initMenu);

-->
