	$(document).ready(function() {
   		$('#q').focus(function() {
   		    $('#q').addClass("focusField");
		    $(this).animate({width:"250px",height:"30px",borderWidth: "5px",fontSize: "16pt"}, 1000); // enlarge width 
		});
		$('#q').blur(function() {
		    $(this).removeClass("focusField").addClass("googleSearchInput");
			$(this).animate({width:"120px",height:"15px",borderWidth: "0px",fontSize: "10pt"}, 1000); // enlarge width 
		});    		
	});	