﻿/*!
* jQuery JavaScript Library v1.3.2
* http://jquery.com/
*
* Copyright (c) 2009 John Resig
* Dual licensed under the MIT and GPL licenses.
* http://docs.jquery.com/License
*
* Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
* Revision: 6246
*/

$(function () {
    $('#popout a').stop().animate({ 'marginRight': '-110px' }, 0);

    $('#popout > li').hover(
                    function () {
                        $('a', $(this)).stop().animate({ 'marginRight': '0' }, 200);
                    },
                    function () {
                        $('a', $(this)).stop().animate({ 'marginRight': '-110px' }, 200);
                    }
                );
});

$(function () {
    $('#facebook div').stop().animate({ 'marginRight': '-110px' }, 0);

    $('#facebook > li').hover(
                    function () {
                        $('div', $(this)).stop().animate({ 'marginRight': '0' }, 200);
                    },
                    function () {
                        $('div', $(this)).stop().animate({ 'marginRight': '-110px' }, 200);
                    }
                );
});
