$(document).ready(function() {
    
    /* For the search form textbox */
    $('input[name="q"]').each(function(){
		var title = $(this).attr('title');
		$(this)
			.focus(function(){ if($(this).val() == title) $(this).val(''); })
			.blur(function(){ if($(this).val() == '') $(this).val(title); });
	});
    
});
