// JavaScript utilities for moofuslist.com
// Brian Krause
// February 2, 2009

function prepare(x) {
    if (x.value == 'Enter City, State, ZIP or property ID') {
      x.style.color = 0; 
      x.value ='';
    }
    if (x.value == 'Boston, Cambridge, Somerville, 02134, 02138') {
      x.style.color = 0; 
      x.value ='';
    }
}
