$(document).ready(function(){
    $('#main li').mouseover(function(){
        $(this).children('a.link').stop().animate({
            left:-100,
            top:183,
            backgroundColor: "lightcyan"
        },400);
    });
    $('#main li').mouseout(function(){
        $(this).children('a.link').stop().animate({
            left:0,
            top:173,
            backgroundColor: "lightblue"
        },350);
    });
});
