// ¨2002 redengine inc. // dave@redengine.comfunction spin() {	var how_many_ads = 10;var now = new Date()var sec = now.getSeconds()var ad = sec % how_many_ads;ad +=1;if (ad==1) {title=" ";alt="feature image";pic="../feature/feature_l_arabian.jpg";width="361";height="291";}if (ad==2) {title=" ";alt="feature image";pic="../feature/feature_l_western.jpg";width="361";height="291";}if (ad==3) {title=" ";alt="feature image";pic="../feature/feature_l_truck.jpg";width="361";height="291";}if (ad==4) {title=" ";alt="feature image";pic="../feature/feature_l_roman.jpg";width="361";height="291";}if (ad==5) {title=" ";alt="feature image";pic="../feature/feature_l_hollywood.jpg";width="361";height="291";}if (ad==6) {title=" ";alt="feature image";pic="../feature/feature_l_african.jpg";width="361";height="291";}if (ad==7) {title=" ";alt="feature image";pic="../feature/feature_imperial.jpg";width="361";height="291";}if (ad==8) {title=" ";alt="feature image";pic="../feature/feature_l_polynesian.jpg";width="361";height="291";}if (ad==9) {title=" ";alt="feature image";pic="../feature/feature_l_igloo.jpg";width="361";height="291";}if (ad==10) {title=" ";alt="feature image";pic="../feature/feature_l_executive.jpg";width="361";height="291";}document.write('<img src="' + pic + '" width=')document.write(width + ' height=' + height + ' ');document.write(' title="' + title + '"');document.write('alt="' + alt + '" border=0>');}