$(document).ready(function(){
						$("#goit").focus(function(){
							$(this).animate({width:"250px"},{queue:false, duration:1500, easing: 'easeOutExpo'});	
							$(this).css("background-color","#fff");	
							$("#searcher").animate({width:"250px"},{queue:false, duration:1500, easing: 'easeOutExpo'});						
							}
						);
						
						$("#goit").blur(function(){
							$(this).animate({width:"175px"},{queue:false, duration:1500, easing: 'easeOutExpo'});	
							$(this).css("background-color","#eee");	
							$("#searcher").animate({width:"175px"},{queue:false, duration:1500, easing: 'easeOutExpo'});						
							}
						);
						
				
				
						   });





