$(document).ready(function() {
$('.tbox').focus(function() { $(this).css('background-color','#FFFF80'); });
$('.tbox').blur(function() { $(this).css('background-color','#FFFFFF'); });
$('#sterms').focus(function() { if ($(this).val() == 'Search') { $(this).val(''); } });
$('#sterms').blur(function() { if ($(this).val() == '') { $(this).val('Search'); } });
$('#emailaddr').focus(function() { if ($(this).val() == 'Your Email Address') { $(this).val(''); } });
$('#emailaddr').blur(function() { if ($(this).val() == '') { $(this).val('Your Email Address'); } });
});
