// JavaScript Document
$(document).ready(function(){
	$("#quickLink").hover(
		function () {
			$(this).children("ul").slideDown("normal");
		}, 
		function () {
			$(this).children("ul").slideUp("normal");
		}
	);
	$("#quickLink_title").hover(
		function () {
			$(this).css( { 'backgroundColor' : "#dcbc68"});
		}, 
		function () {
			$(this).css( { 'backgroundColor' : "#d7c9a7"});
		}
	);
	$("#quickLink").click(function () { 
		$("#quickLinks").slideToggle("normal"); 
	});

	jQuery('#theMenu').Accordion({
		active: 'h3.selected',
		header: 'h3.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	jQuery('#xtraMenu').Accordion({
		active: 'h4.selected',
		header: 'h4.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});	
		jQuery('#xtraMenu1').Accordion({
		active: 'h4.selected',
		header: 'h4.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});	
			jQuery('#xtraMenu2').Accordion({
		active: 'h4.selected',
		header: 'h4.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});	
});