function initMain() {
	var contactform = $('form div.contactform');
	if (contactform.length > 0) {
		$('input.typetext', contactform).bind('focus', function () {
			if (this.name == 'email' && this.value == 'Your email address') this.value = '';
			if (this.name == 'phone' && this.value == 'Your phone number') this.value = '';
		});
	}
}

$(document).ready(initMain);