$(document).ready(function(){
// Start animation
$(".start-btn").click(function(){
$(".obj").animate({left: "+=150px"}, 2000);
});
// Stop running
// animation
$(".stop-btn").click(function(){
$(".obj").stop();
});
// Start animation
// in the opposite
// direction
$(".back-btn").click(function(){
$(".obj").animate({left: "-=150px"}, 2000);
});
// Reset to
// default
$(".reset-btn").click(function(){
$(".obj").animate({left: "0"}, "fast");
});
});