/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
$(document).ready(function(){
closetimer = 0;
	if($("#nav1")) {
		$("#nav1 b").mouseover(function() {
		clearTimeout(closetimer);
			if(this.className.indexOf("clicked") != -1) {
				$(this).parent().next().slideUp(500);
				$(this).removeClass("clicked");
			}
			else {
				$("#nav1 b").removeClass();
				$(this).addClass("clicked");
				$("#nav1 ul:visible").slideUp(500);
				$(this).parent().next().slideDown(500);
			}
			return false;
		});
		$("#nav1").mouseover(function() {
		clearTimeout(closetimer);
		});
		$("#nav1").mouseout(function() {
			closetimer = window.setTimeout(function(){
			$("#nav1 ul:visible").slideUp(500);
			$("#nav1 b").removeClass("clicked");
			}, 2000);
		}); 
	}
});
