  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-19843350-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();



function emptyUsernameBox()
{
	if(document.getElementById("usernameBox").value == "Username")
	{
		document.getElementById("usernameBox").value = "";
	}
}

function emptyPasswordBox()
{
	if(document.getElementById("passwordBox").value == "Password")
	{
		document.getElementById("passwordBox").value = "";
	}
}

function fillUsernameBox()
{
	if(document.getElementById("usernameBox").value == "")
	{
		document.getElementById("usernameBox").value = "Username";
	}
}

function fillPasswordBox()
{
	if(document.getElementById("passwordBox").value == "")
	{
		document.getElementById("passwordBox").value = "Password";
	}
}

