// JavaScript Document
$(document).ready(function(){
    $('#menu li a').hover(function(){
		$(this).animate({'width':'215px'},{queue:false,duration:200});
	},function(){
		$(this).animate({'width':'235px'},{queue:false,duration:200});
	});
});