window.addEvent('domready', initFooter);

function initFooter()
{
	if($('txtFooterFullName'))
	{
		$('txtFooterFullName').value='Name';
		$('txtFooterFullName').addEvent('focus',txtFooterFullName_Focus);
		$('txtFooterFullName').addEvent('blur',txtFooterFullName_Blur);
	
		$('txtFooterPhoneNumber').value='Phone number';
		$('txtFooterPhoneNumber').addEvent('focus',txtFooterPhoneNumber_Focus);
		$('txtFooterPhoneNumber').addEvent('blur',txtFooterPhoneNumber_Blur);
		
		$('txtFooterEmail').value='Email address';
		$('txtFooterEmail').addEvent('focus',txtFooterEmail_Focus);
		$('txtFooterEmail').addEvent('blur',txtFooterEmail_Blur);
	
		$('txtFooterEnquiry').value='Enquiry';
		$('txtFooterEnquiry').addEvent('focus',txtFooterEnquiry_Focus);
		$('txtFooterEnquiry').addEvent('blur',txtFooterEnquiry_Blur);
	}

}

function txtFooterFullName_Focus()
{
	if ($('txtFooterFullName').value=='Name') $('txtFooterFullName').value='';
}

function txtFooterFullName_Blur()
{
	if ($('txtFooterFullName').value=='') $('txtFooterFullName').value='Name';
	
}

function txtFooterPhoneNumber_Focus()
{
	if ($('txtFooterPhoneNumber').value=='Phone number') $('txtFooterPhoneNumber').value='';
}

function txtFooterPhoneNumber_Blur()
{
	if ($('txtFooterPhoneNumber').value=='') $('txtFooterPhoneNumber').value='Phone number';
	
}

function txtFooterEmail_Focus()
{
	if ($('txtFooterEmail').value=='Email address') $('txtFooterEmail').value='';
}

function txtFooterEmail_Blur()
{
	if ($('txtFooterEmail').value=='') $('txtFooterEmail').value='Email address';
	
}

function txtFooterEnquiry_Focus()
{
	if ($('txtFooterEnquiry').value=='Enquiry') $('txtFooterEnquiry').value='';
}

function txtFooterEnquiry_Blur()
{
	if ($('txtFooterEnquiry').value=='') $('txtFooterEnquiry').value='Enquiry';

}


