$('#BtnRight').click(function () {
$('#Rocket').animate({ left: 1000 }, 500);
});
$('#BtnLeft').click(function () {
$('#Rocket').animate({ left: 0 }, 500);
});
$('#BtnRight').click(function () {
$('#Rocket').stop(true, false).animate({ left: '+=200' }, 500);
});
$('#BtnLeft').click(function () {
$('#Rocket').stop(true, false).animate({ left: '-=200' }, 500);
});