jQuery(document).ready(function(){
    $("#menuContent li a").hover(
        function(){
            $(this).animate({
                width: "263px"
            }, {
                queue:false,
                duration:"normal"
            } );       
        },
        function(){
            $(this).animate({
                width: "70px"
            }, {
                queue:false,
                duration:"normal"
            } );
        });
});
