// Add site spesific javascript here

function clearInput(object, string) {
	if(object.value == string) {
		object.value = '';
	}
}