/* ####################################################################
#       Copyright ©2008    JonWilde.net    All rights reserved.       #
#                                                                     #
#   This file and its contents are protected under U.S. copyright     #
#   law. Any unauthorized alteration, distribution, or reproduction   #
#   will be prosecuted to the maximum possible extent of the law.     #
#                                                                     #
#                     www.CanyonCraftCabinets.com                     #
#################################################################### */

$(document).ready(function() {

	// Navigation Menu toggle script
	var toggle = function(direction, display) {
		return function() {
			var self	= this;
			var ul		= $("ul", this);
			if ( ul.css("display") == display && !self["block" + direction] )
			{
				self["block" + direction] = true;
				ul["slide" + direction]("fast", function() {
					self["block" + direction] = false;
				});
			}
		};
	}
	$("li.subMenu").hover(toggle("Down", "none"), toggle("Up", "block"));
	$("li.subMenu ul").hide();

});


function go(loc) {
	window.location.href = loc;
}

function goBack() {
	history.back();
}

function transition(process)
{
	document.formMain.process.value	= process;
	document.formMain.submit();
}


function switchButtonState(button, enable)
{
	if ( enable ) {
		$(button).removeClass("buttonDisabled").attr("disabled","");
	}
	else {
		$(button).addClass("buttonDisabled").attr("disabled","disabled");
	}
}


