$(document).ready(function() {
	$(".navlist").Treeview({ speed: "fast", collapsed: true });
	
	if ($.browser.msie) {
		$(".hitarea").css("position", "absolute");
		
		if (typeof document.body.style.maxHeight != "undefined") {
			$(".expandable a").css("margin-top", "-14");
		}
		
		document.execCommand("BackgroundImageCache", false, true);
		$("#navbar li").hover(
			function () {
				$(this).children("ul.navlist").show();
			},function(){
				$(this).children("ul.navlist").hide();
			}
		);//hover
	}
} );

