Saratov64,
$(function() {
//console.log($('#menu').length); //проверка что элемент есть 1
var timer;
$('body').on('click', '.btn1', function(e){
clearInterval(timer);
timer = setInterval(station1, timeInterval)
});
$('body').on('click', '.btn2', function(e){
alert('2')
});
$('body').on('click', '.btn3', function(e){
alert('3')
});
});