$(document).ready(function () {
    var c = 0;
    $("#share").click(function () {
        if (c == 0) {
            $(this).animate({marginRight: "130px"},
            1E3, "easeOutBounce");
            c = 1
        } else if (c == 1) {
            $(this).animate({marginRight: "0px"},
            500, "easeOutBounce");
            c = 0
        }
    });

//controls fade on roll - but looks sloppy in ie
//
//    $("#share img").mouseover(function () {
//        $(this).stop().animate({
//            opacity: 1
//        },
//        400)
//    }).mouseout(function () {
//        $(this).stop().animate({
//            opacity: 0.5
//        },
//        400)
//    });
    
});
