/*jQuery().ready(function(){
    $("a.icon").mouseover(function(){
        $(this).stop();
        $(this).children("span").stop();
        $(this).animate({width:"200px"});
        $(this).children("span").fadeIn(200);
    });

    $("a.icon").mouseleave(function(){
        $(this).stop();
        $(this).children("span").stop();
        $(this).animate({width:"20px"});
        $(this).children("span").fadeOut(200);
    });

});*/

jQuery().ready(function(){




});