

// Change Input

function changeInput(input,text) {
	

	if (input.value == text) {
		input.value = '';
	}
	
	else if (input.value.length == 0) {
		input.value = text;
	}
	
}


function closePhotos(obj) {
	document.getElementById(obj).innerHTML="<br /><a id='see_all_photos' href='javascript:jah(\'photos.html\',\'more_photos\');'>See Photos</a>";
	return false;
}
