// General JavaScript
//<!--
var show = true;
$("#mailingListButton").click(function(e){
	e.preventDefault();
	if(show){
		show = false;
		$("#mailingListButton").animate({
			left	: "235px"
		});
		$("#emailListFormWrap").animate({
			left	: "0px"
		},function(){
			$("#mailingListHideButton").show();
		});
		$(document).bind("keydown.bio",function(event){
			if (event.keyCode == 27) {
				show = true;
				$("#mailingListHideButton").hide();
				$("#mailingListButton").animate({
					left	: "0px"
				});
				$("#emailListFormWrap").animate({
					left	: "-235px"
				});
				$(document).unbind("keydown.bio");
			}
		});
	}else{
		e.preventDefault();
		show = true;
		$("#mailingListHideButton").hide();
		$("#mailingListButton").animate({
			left	: "0px"
		});
		$("#emailListFormWrap").animate({
			left	: "-235px"
		});
	}
});
$("#mailingListButton #glow").fadeIn(1000,function(){
	$(this).fadeOut(1000,function(){
		$(".bounce").effect("bounce");
	});
});
//-->

