shuffle = 1; //Replace 1 with 0 if you want to temporarily turn off this script
//you can keep adding more titles by copying over, as long as you change the number
title=new Array();
title[0] = "<3fashionmessup";
title[1] = "message in a bottle";
title[2] = "oscar mayer weiner";
title[3] = "jovi";
if (shuffle == 1) {
var randsg = Math.floor(Math.random()*title.length);
document.title = title[randsg];
}