コードに構文エラーがあります
function BTTS(){
$('#banner-title span').fadeOut('fast',function() {
$('#banner-title span').replaceWith('Rental Program');
}); //<-- missing ')' here
}
$(document).ready(function(){
// RUN BTTS FUNCTION
setInterval('BTTS()', 7500);
}); //<-- missing ')' here
更新されたソリューション
var titles = ['My Title 1', 'My Title 2'], titleFlag = 0;
function BTTS(){
$('#banner-title span').fadeOut('fast',function() {
titleFlag = (titleFlag + 1) % titles.length;
$('#banner-title span').html(titles[titleFlag]).show();
}); //<-- missing ')' here
}
$(document).ready(function(){
// RUN BTTS FUNCTION
setInterval(BTTS, 2000);
}); //<-- missing ')' here
デモ:フィドル