jQuery(function() {
	var bIsIE = $.browser.msie;
	var bIsIE6 = $.browser.msie && (7 > parseInt($.browser.version));
	var bIsIE7 = $.browser.msie && (6 < parseInt($.browser.version));
	if (0 < $("#navigation").length) {
		$("#navigation > ul > li:has(ul)").hover(function() {
			var oSubMenu = $(this).find("> ul");
				if (oSubMenu.is(':animated')) {
					oSubMenu.stop(true, true)
						.css({
							"margin-left": bIsIE ? "0" : "50px",
							width: "183px"
						})
						.slideDown('normal');
				} else {
					oSubMenu.slideDown('normal');
			}   //end if
		}, function() {
			var oSubMenu = $(this).find("> ul");
			if (oSubMenu.is(':animated')) {
				oSubMenu.stop(true, true).slideUp('fast');
			} else {
				oSubMenu.slideUp('fast');
			}   //end if
		});
	}   //end if
	if (0 < $("#accordion").length) {
		$("#accordion").tabs("#accordion div.pane", {
			tabs: 'h2',
			effect: 'slide',
			initialIndex: -1
		});
	}   //end if
});
