<!-- Begin 
var how_many_ads = 3; 
var now = new Date() 
var sec = now.getSeconds() 
var ad = sec % how_many_ads; 
ad +=1; 
if (ad==1) { 
url="audio/boogieshoes.mp3"; 
} 
if (ad==2) { 
url="audio/vibrator.mp3"; 
} 
if (ad==3) { 
url="audio/takemyhand.mp3"; 
} 
document.write('<bgsound src=\"' + url + '\" loop="0">'); 

//End --> 