﻿            jQuery(document).ready(function(e)
            {
			/*
                jQuery("div#SocialMedia > dl").each(function(index, element)
                {
                    var $dl = jQuery(element);
                    var dlWidth = $dl.width();
                    var $dt = $dl.find("dt:first");
                        $dt.addClass('no-background');
                    var $dd = $dl.find("dd:first");
                        $dd.animate({width: "hide", paddingLeft: "hide", paddingRight: "hide", marginLeft: "hide", marginRight: "hide"}, 1);

                    $dt.mouseover(function(e)
                    {
                        $dt.removeClass('no-background');
                        var doAnimate = $dd.animate({width: "show", paddingLeft: "show", paddingRight: "show", marginLeft: "show", marginRight: "show"}, 250, function()
                        {
                            doAnimate = null;
                        });
                    });

                    $dt.mouseout(function(e)
                    {
                       var doAnimate = $dd.animate({width: "hide", paddingLeft: "hide", paddingRight: "hide", marginLeft: "hide", marginRight: "hide"}, 250, function()
                        {
                            doAnimate = null;
                            $dt.addClass('no-background');
                        });
                    });
                });*/
            });
