﻿function Footer_Initialise(container)
{
	jQuery(container).find("input").focus(function()
	{
		if (this.value == "Email address")
		{
			this.value = "";
		}
	});

	jQuery(container).find("input").blur(function()
	{
		if (this.value == "")
		{
			this.value = "Email address";
		}
	});
}
