		$(function() {
			$(".sliding .jsh").each(function() {
				var el = $(this);
				if(!el.parent().hasClass("expanded")) {
					el.next().hide();
				}
				el.click(function() {
					$(this).next().slideToggle("slow");
					$(this).parent().removeClass("expanded");
				});
			});
			if(!(!$.browser.msie || $.browser.version != 6.0)) {
				$(".main-menu ul li .trigger").mouseover(function() {
					$(this).addClass("hover");
				}).mouseout(function() {
					$(this).removeClass("hover");
				});
			}
			$(".site-menu .trigger").each(function() {
				if($(this).parent().parent().parent().parent().hasClass("site-menu")) {
					if($(this).parent().children().filter("ul").length > 0) {
						if($(this).parent().children().filter("ul").css("display") != "none") {
							$(this).parent().addClass("down");
						}
					} else {
						$(this).parent().addClass("hideico");
					}
					$(this).click(function() {
						$(this).parent().toggleClass("down");
						$(this).parent().children().filter("a").toggleClass("selected");
						$(this).parent().children().filter("ul").slideToggle("slow");
					})
				}
			});
		});
