jQuery(document).ready(function() {
	jQuery("#search_text_home").hover(function(){
		jQuery("#search_text_home").stop().animate({
				"width": 230
		 }, 500 );},function(){
		 jQuery("#search_text_home").stop().animate({
				"width": 100
		 }, 500 );
	}); 
});	
