$(document).ready(function () {
	//set ul opactiy
	$('#nav>ul>li>a').click(function() {
		if ($(this).parent().find('ul').length > 0) {
			//hide, deactivate other ULs
			$('#nav>ul>li>a').css({
				'color': '#000'
			});
			$('#nav li ul').slideUp(500);
			$('#nav>ul>li>a').removeClass('active');
			//make this link active
			$(this).addClass('active');
			//show this ULs
			$(this).stop().animate({
				'color': '#00b7d6'
			});
			$(this).parent().find('ul').slideDown(500);
			return false;
		}
	});
	//animate main link text hover
	$('#nav>ul>li>a').hover(function() {
		if (!this.origcolor) {
			this.origcolor = $(this).css('color');
		}
		$(this).stop().animate({
			'color': '#00b7d6'
		},250)
	},function() {
		if (!$(this).hasClass('active') && this.origcolor) {
			$(this).stop().animate({
				'color': this.origcolor
			},250)
		}
	});
	//animate subnav text hover
	$('#nav li ul li a').hover(function() {
		if (!this.origcolor) {
			this.origcolor = $(this).css('color');
		}
		$(this).stop().animate({
			'color': '#333333'
		},250)
	},function() {
		if (this.origcolor) {
			$(this).stop().animate({
				'color': this.origcolor
			},250)
		}
	});
});

