// JavaScript Document
$(document).ready(function() {
 $('.search_text_field').each(function() {
    var default_value = this.value;
    $(this).focus(function() {
        if(this.value == default_value) {
            this.value = '';
        }
    });
    
});
});


