$(document).ready(function(){
 		// Place the quicklinks div under the quicklinks link:
		var ql_offset = null;
		if ($("#mainmenu").length > 0) {
			ql_offset = $("#mainmenu").offset();
			ql_offset.height = $("#mainmenu").height();
			ql_offset.width = $("#mainmenu").width();
		} else {
			ql_offset = $("#topheader_ac").offset();
			ql_offset.height = $("#topheader_ac").height();
			ql_offset.width = $("#topheader_ac").width();
		}
		ql_offset.bottom = ql_offset.top + ql_offset.height;
		ql_offset.right = ql_offset.left + ql_offset.width;
		
 		$("#quicklinks").css("top", ql_offset.bottom);
 		$("#quicklinks").css("left", (ql_offset.right - $("#quicklinks").width()));

		// Toggle the quick links:
		$("#toggle_quicklinks").click(function () {
					if ($("#quicklinks").is(":hidden")) {
						$("#quicklinks").slideDown("800");
					} else {
						$("#quicklinks").slideUp("800");
					}
					return false;
				});
		
		// Toggle the quick links:
		$("#toggle_quicklinks2").click(function () {
					if ($("#quicklinks").is(":hidden")) {
						$("#quicklinks").slideDown("800");
					} else {
						$("#quicklinks").slideUp("800");
					}
					return false;
				});
				


		// Fade out on the div's hover out event:
		$("#quicklinks").click(
					function () {
					},
					function () {
						$("#quicklinks").fadeOut("250");
					}
				);

 });