// JavaScript Document

$(document).ready(function(){
	$('#q').focus(function(){
		$(this).css('border-color','#3e627c');
		if ($(this).val()=='search by Google') {
			$(this).val('');
		};
	});
	$('#q').blur(function(){
		$(this).css('border-color','#5e829c');
		if ($(this).val()=='') {
			$(this).val('search by Google');
		};
	});
});
