<!-- Hide From Old Browsers

/* ©1996-98 JavaScript written by Steve Thompson @ http://www.w8r.com --- e-mail: thompson@w8r.com or myclone@hotmail.com --- This simple script changes the background image four times a day -- It can be altered to include other page attributes such as text colors and individual page items such as on the example page - Use freely but keep this entire credit line intact. */

day=new Date()     //..get the date

x=day.getHours()    //..get the hour

if(x>=0 && x<4) {

   document.write('<body background="images/0sw.gif">')

} else

if(x>=4 && x<12) {

   document.write('<body background="images/dugr.gif">')

} else

if(x>=12 && x<18) {

   document.write('<body background="images/index_bg.gif">')

} else

if (x>=18 && x<24) {

   document.write('<body background="images/br120x600.gif">')

}

<!-- End Hiding -->
