// menu sound - click effect
		$("ul#nav a")
		  .each(function(i) {
			if (i != 0) { 
			  $("#beep")
				.clone()
				.attr("id", "beep" + i)
				.appendTo($(this).parent()); 
			}
			$(this).data("beeper", i);
		  })
		  .mouseenter(function() {
			$("#beep" + $(this).data("beeper"))[0].play();
		  });
		$("#beep").attr("id", "beep0");
		
// menu opacity - onmouseover effect
	$(function() {
		// set opacity to level for on page load
		$("#nav li").css("opacity",".7");
		// on mouse over
		$("#nav li").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: .35
			}, '200');
		},
		// on mouse out
		function () {
			// animate opacity back to on page load level
			$(this).stop().animate({
				opacity: .7
			}, '600');
		});
	});

// menu text easing - up/down effect
			$('#nav span').hover(function(event) {
				$(this)
					.animate(
						{ top: -10 }, {
							duration: '1200',
							easing: 'jswing'
						})
					.animate(
						{ top: 0 }, {
							duration: '600',
							easing: 'jswing'
						});
					});

