// RANDOM PICTURES
<!-- 
var thePics = new Array();

thePics[0] = "banner1.jpg";
thePics[1] = "banner2.jpg";
thePics[2] = "banner3.jpg";

var rn = Math.floor(Math.random() * thePics.length);

document.write("<img src='images/heading_pics/"+thePics[rn]+"' border='0' alt='Youdoo banner'>");
//-->