$(document).ready(function(){

	
	$("#nav a:not(#gravity)").mousedown(function(){
		$(this).css("position","relative");
		$(this).css("top","2px");
	});
	
	$("#nav a").mouseup(function(){
		$(this).css("position","relative");
		$(this).css("top","0px");
	});
	$("#nav a").mouseout(function(){
		$(this).css("position","relative");
		$(this).css("top","0px");
	});
	
	$('#nav a').tipsy({gravity: 's'});

	$("#nav li a, #nav li div").mouseover(function(){
		$(".tipsy-inner").css("color",color[Math.floor(Math.random()*11)]);
		$(this).css("background-color",color[Math.floor(Math.random()*11)]);
	});
	
	
	$("#mailinglist input").eq(0).click(function(){
		$(this).attr("value","");
	});
	
	$("form#mailinglist").submit(function(){
		/*setTimeout("doit()",1250);*/
		var dataString=$(this).serialize();
		$(this).find("input").attr("disabled","true");
		$.ajax({
			type: "POST",
			url: "/joinlist.php",
			data: dataString,
			success: function() {
				$("#mailinglist").html("Thanks!");
			}
		});
		return false;	
	});
	
});

function doit(){
	$("#mailinglist").html("Thanks!");
}
color=new Array();
color[0]="#4af4f1";
color[1]="#10e476";
color[2]="#f4c200";
color[3]="#f40100";
color[4]="#bc00f4";
color[5]="#cbf400";
color[6]="#00baf4";
color[7]="#2c52ff";
color[8]="#ff246c";
color[9]="#c9c5a2";
color[10]="#c9c5a2";

