
$(function() {

		$('.google_src input[type=text]').blur(function() {
			if (this.value == '') {
				this.className = 'google_src_bg_0';
			} else {
				this.className = 'google_src_bg_1';
			}
		});

	
		$('.google_src input[type=text]').focus(function() {	
			this.className = 'google_src_bg_1';
		});
	
		$('.google_src input[type=text]').blur();

});