var fieldId = null;

function textFieldIn(field) {
	fieldId = document.getElementById(field + 'FieldInput');
	
	if (fieldId.value == 'Your Email Address' || fieldId.value == 'Site Search') {
		fieldId.value = '';
		fieldId.style.color = '#857872';
		fieldId.style.textAlign = 'left';
	}
}

function textFieldOut(field) {
	fieldId = document.getElementById(field + 'FieldInput');
	
	if (fieldId.value == '') {
		fieldId.style.color = '#cdc1af';
		fieldId.style.textAlign = 'center';
	}
	
	if (fieldId.value == '' && field == 'email') {
		fieldId.value = 'Your Email Address';
	}
	
	if (fieldId.value == '' && field == 'search') {
		fieldId.value = 'Site Search';
	}
}

function searchFieldIn(id) {
	fieldId = document.getElementById(id);
	
	if (fieldId.value == 'MLS# or Keyword Search') {
		fieldId.value = '';
		fieldId.style.fontStyle = 'normal';
		document.getElementById('buttonSearch').style.display = 'block';
	}
	else
	{
		fieldId.style.fontStyle = 'normal';
		document.getElementById('buttonSearch').style.display = 'block';
	}
}

function searchFieldOut(id) {
	fieldId = document.getElementById(id);
	
	if (fieldId.value == '') {
		fieldId.value = 'MLS# or Keyword Search';
		fieldId.style.fontStyle = 'italic';
	}
}

function navOver(id) {
	navId = document.getElementById(id);
	navId.style.cursor = 'pointer';
	navId.style.height = '358px';
}

function navOff(id) {
	document.getElementById(id).style.cursor = 'pointer';
	document.getElementById(id).style.height = '100px';
}
