		$(document).ready(function(){
			$(".fullMenuBtn").toggle(
				function(){
					$(".footer").animate({"height":"205px"}, 100);
					$(this).addClass("selected");
				},
				function(){
					$(".footer").animate({"height":"35px"}, 100);
					$(this).removeClass("selected");
				}
			);
			
			$(".newsletterSignup form").submit(function (e){
				if ($(this).find("input:eq(0)").val() == "") {
					return false;
				}
			});
			
			$(".newsletterSignup form input:eq(0)").bind("click focus", function() {
				$(this).val("");
			});
		});

