$(document).ready(function () {
	//var navwsubs = "company|products|industries";
	var selectsub = "#"+$("#mainnav li div.clicked").attr("id");
	
	$("#mainnav li").mouseenter(
		function () {
			var thismain = "#"+$(this).attr("id");
			var thissub = thismain.replace("mainnav", "subnav");
			if (thissub != selectsub && thismain != "#") {
				$(selectsub).removeClass("visible");
				$(thissub).addClass("visible");
			}			
		}
	);
	$("#mainnav li").mouseleave(
		function () {
			var thismain = "#"+$(this).attr("id");
			var thissub = thismain.replace("mainnav", "subnav");
			if (thissub != selectsub && thismain != "#") {
				$(thissub).removeClass("visible");
				$(selectsub).addClass("visible");
			}
		}
	);

	//hide the Contact button and slide down the form; Don't follow the link.
	$('#home-contact-button').click(function() {
		$(this).hide();
		$('#home-contact-content').slideDown();
		return false;
	});

	//Close the form and re-show the Contact button.
	$('.top-contact .close').click(function() {
		$(this).parent('#home-contact-content').slideUp();
		$('#home-contact-button').show();
	});


	//hide the Login button and slide down the form; Don't follow the link.
	$('#top-login-button').click(function() {
		$(this).hide();
		$('#login-form-content').slideDown();
		return false;
	});

	//Close the form and re-show the Login button.
	$('#login-form-content .login-close').click(function() {
		$(this).parent('#login-form-content').slideUp();
		setTimeout(function() {$('#top-login-button').show();}, 250);
	});

});

