	$(function() {
		$('.nav ul').superfish();
		// add first and last classes to the appropriate LI's
		$('.nav ul li:first-child').addClass('first');
		$('.nav ul li:last-child').addClass('last');
		
		$("#frmSignUp #email").focus(function () {
			if ($(this).val() == $(this)[0].defaultValue) {
				$(this).val(""); 
				$(this).removeClass("empty");
			}
		}).blur(function() {
			if ($(this).val() == "") {
					$(this).val($(this)[0].defaultValue);
				$(this).addClass("empty");
			}
        	}); 
	});
