/**
 * jQuery brbr plugin
 * Copyright (C) KAYAC Inc. | http://www.kayac.com/
 * Dual licensed under the MIT <http://www.opensource.org/licenses/mit-license.php>
 * and GPL <http://www.opensource.org/licenses/gpl-license.php> licenses.
 * Date: 2008-11-27
 * @author kyo_ago <http://tech.kayac.com/archive/jquery-brbr-plugin.html>
 * @version 1.0.1
 */


$(function() {
     $('#sid li a').hover(
        function(){
            $(this).find('span').stop().animate({'marginLeft':'25px'},100);

        },

        function () {

            $(this).find('span').stop().animate({'marginLeft':'0px'},300);

        }


    );

});

