// JavaScript Document

jQuery(document).ready(function() {
jQuery('#search-text').focus(
function() {
if (this.value == this.defaultValue) {
this.value = '';
}
});
jQuery('#search-text').blur(
function() {
if (this.value == '') {
this.value = this.defaultValue;
}
});
});
