$(function() {
$('#mdsocial a').stop().animate({'marginLeft':'-10px'},1000);
$('#mdsocial > li').hover(
function () {
$('a',$(this)).stop().animate({'marginLeft':'23px'},200);
},
function () {
$('a',$(this)).stop().animate({'marginLeft':'-10px'},200);
}
);
});
