msg = " GBIANCHI  ...  Ingrosso Alimentari ...  Cash and Carry ... Ogni giorno dalle 8 alle 12 dalle 14 alle 19 Il Sabato solo il mattino";
msg = "" + msg;pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos >  msg.length) pos = 0
window.setTimeout("scrollMSG()",200);
}
scrollMSG();