$(document).ready(function() {
    $("a#single_image").click(function(event) {
        $(this)
            .animate(
                { left: 200 }, {
                    duration: 'slow',
                    easing: 'easeOutElastic'
                })
            .animate(
                { left: 0 }, {
                    duration: 'slow',
                    easing: 'easeOutElastic'
                });
    });
});
