// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults


//http://yehudakatz.com/2007/01/31/using-jquery-in-rails-part-i/
//jQuery.noConflict()

function clearText(search){
    if (search.defaultValue == search.value) search.value = '';
    else if (search.value == '') search.value = search.defaultValue;
}