	    $(document).ready(function(){

		$("li.level1").hover(
		function () {
		    $(this).addClass("hoverL1");
		},
		function () {
		    $(this).removeClass("hoverL1");
		}
	    );

		$("li.level2").hover(
		function () {
		    $(this).addClass("hoverL2");
		},
		function () {
		    $(this).removeClass("hoverL2");
		}
	    );

		$("li.level3").hover(
		function () {
		    $(this).addClass("hoverL3");
		},
		function () {
		    $(this).removeClass("hoverL3");
		}
	    );
		$('div.navL2').each(function(){
		    var length = 150 * $(this).children('ul').size();
		    $(this).css('width', length + 'px');
		});

	    });
