	function showLogin()
	{
	 document.getElementById('login').style.display=(document.getElementById('login').style.display != 'block' ? 'block' : 'none');
	}
	

	
	function init() 
	{
	    rightEye = document.getElementById("rEye");
	    leftEye = document.getElementById("lEye");
	    rightEyeball = document.getElementById("rPupil");
	    leftEyeball = document.getElementById("lPupil");
	
	    rightEye.style.top = "80px";
	    rightEye.style.left = "150px";
	    leftEye.style.top = "80px";
	    leftEye.style.left = "100px";
	
	    document.onmousemove = moveHandler;		
	    animateEyes(118,93);
	}
	
	function moveHandler(e) 
	{ 
	    var x = (e)?animateEyes(e.pageX,e.pageY):animateEyes(window.event.clientX,window.event.clientY);
	}
	
	function animateEyes(xPos,yPos) 
	{
	    leftEyeball.style.left = newEyeballPos(xPos,parseInt(leftEye.style.left));
	    leftEyeball.style.top = newEyeballPos(yPos,parseInt(leftEye.style.top));
	    rightEyeball.style.left = newEyeballPos(xPos,parseInt(rightEye.style.left));
	    rightEyeball.style.top = newEyeballPos(yPos,parseInt(rightEye.style.top));
	}
	
	function newEyeballPos(currPos,eyePos) 
	{
	    newPos = Math.min(Math.max(currPos,eyePos+3),eyePos+17);
	    return newPos;
	}