jQuery(function($){	var pseudoq = $('form.search_google_form input.pseudoq');	$(pseudoq).show();	$('form.search_google_form input.searchgoogle').hide();		if( $.trim( $(pseudoq).attr('value') ) == '' ){		$(pseudoq).addClass('pseudoq_g_img');	}		$(pseudoq).focusout(function() {		if( $.trim( $(this).attr('value') ) == '' ){			$(this).addClass('pseudoq_g_img');		}else{			$(this).removeClass('pseudoq_g_img');		}	}).focusin(function() {		if( $.trim( $(this).attr('value') ) == '' ){			$(this).removeClass('pseudoq_g_img');		}	});		$(pseudoq).change(function() {		var pseudoq_this = $(this).closest('form.search_google_form').find('input.pseudoq');		var pseudosite = $(this).closest('form.search_google_form').find('input.pseudosite');		var searchgoogle = $(this).closest('form.search_google_form').find('input.searchgoogle');		var search_text = $(pseudoq_this).val();		var search_site = $(pseudosite).val();		$(searchgoogle).val(search_site + ' ' + search_text);	});	$(pseudoq).keyup(function() {		$(this).change();	});});
