(function( $ ) {
$(function() {
$( "#stop" ).click(function() {
$( "#pendulum" ).addClass( "off" ).animate({
top: '150px'
}, 500, function() {
$(this).addClass("green");
});
});
});
})( jQuery );