//Email Slider
var x = 0;
var y = 100;
var z = 0;

function showMail(){
	if (x == 0 && z == 0){
		z = z + 1;
		moreMail();
	}
}

function moreMail(){
	si = setInterval('slideMail()',5);
	var cl = document.getElementById('closure');
	cl.style.width = "0px";
	cl.style.height = "0px";
}

function setIt(){
	x = 0;
	y = 100;
}

function hideMail(){
	var cl = document.getElementById('closure');
	cl.style.width = "100px";
	cl.style.height = "330px";
	var mailer = document.getElementById('mailer');
	mailer.style.width = "100px";
	mailer.style.right = "0px";
	setTimeout("setIt()",100);
}

function slideMail(){
	var mailer = document.getElementById('mailer');
	
	if (y < 575){
		y = y + 75;
		mailer.style.width = y+"px";
	}
	
	if (y >= 575 && x < 125){
		x = x + 25;
		mailer.style.right = x+"px";
		mailer.style.width = "580px";
	}
	
	if (x >= 125){
		clearInterval(si);
	}
}

