ÿþ<html> <head> <LINK href="main.css" rel="stylesheet" type="text/css"> <script language="JavaScript"> var currentColourOffset = 0; var arrayColours = new Array(5); var arrayCells = new Array(5); function initAnimation() { arrayColours[0] = '#ffffff'; arrayColours[1] = '#efefef'; arrayColours[2] = '#dfdfdf'; arrayColours[3] = '#cfcfcf'; arrayColours[4] = '#bfbfbf'; for(k=0;k<5;k++) { arrayCells[k] = document.getElementById('cell' + k); } // setTimeout('redirectIndex()', 5000); } function redirectIndex() { window.location = 'about.php'; } function animateHeaderCells() { currentColourOffset = ((currentColourOffset + 1) % 5); for(k=0;k<5;k++) { arrayCells[k].style.background = arrayColours[((k + currentColourOffset)%5)]; } setTimeout('animateHeaderCells()', 80); } </script> <title>Pattern Media</title> </head> <body onload="javascript: initAnimation(); animateHeaderCells();"> <center> <table cellspacing=0 cellpadding=2> <tr> <td> <table celspacing=0 cellpadding=2> <tr> <td valign=top align=center> <table style="border: 1px solid black; margin: 0px; padding: 0px;" cellspacing=0 cellpadding=0 width=100px height=100px> <tr> <td id="cell4" height=100% width=20% bgcolor=#eeeeee> </td> <td id="cell3" height=100% width=20% bgcolor=#dddddd> </td> <td align=center id="cell2" height=100% width=20% bgcolor=#cccccc> </td> <td id="cell1" height=100% width=20% bgcolor=#bbbbbb> </td> <td id="cell0" height=100% width=20% bgcolor=#aaaaaa> </td> </tr> </table> <br> <center><b><font size=+2>Pattern Media Ltd</font></b></center> <br> </td> </tr> <table> </td> </tr> </table> <br> </body> </html>