// JavaScript Document

$().ready(function(){
				   
		var picWidth='160px';
		
	   $('.menu_text img').css({width:picWidth});

		$('.menu_text img').hover(function(){
										   $(this).animate({width:'400px'});
								   		
											   
										   },function(){
											  	   $(this).css({width:picWidth}); 
											   });		   
				   
				   
				   
});