$(document).ready(function(){
	jQuery('#mycarousel').jcarousel({
		// Configuration
		vertical: false,
		scroll: 1
	});
	$("div.spot").show();
	var isIE = !!document.all && !!window.ActiveXObject && !!window.showModalDialog && !window.opera;
	var isIE7 = isIE && !!document.documentElement && typeof document.documentElement.style.maxHeight != "undefined";
    var isIE_6 = isIE && !isIE7; // is IE6 or lower
    var divTopMenu = isIE_6 ? $("#topmenu")[0] : null;
    if (divTopMenu) { // this is necessary in IE6
        var pageLeft = $("#page")[0].offsetLeft;
	    $("ul.sub").each(function(i, ul) {
	        var pUl = ul.parentNode.parentNode;
	        var w = divTopMenu.offsetWidth - (ul.offsetLeft - pageLeft);
	        ul.style.width = w + "px";
	        ul.style.visibility = "visible";
	    }).hide();
	} else {
	    $("ul.sub").hide();
	}
	$("ul.selected").show();
	$("li.toplevel").hover(function(e) {
		$("ul.sub").hide();
		$(this).children("ul.sub").show();
	}, function(e) {
	    $("ul.sub").hide();
	    $("ul.selected").show();
	});
});