﻿  // cr3ation.co.uk
   function makeArray(len) {
   for (var i = 0; i < len; i++) this[i] = null;
   this.length = len;
   }
   // change the number in the brackets below to the total amount of favicons - don't forget to count ideas[0]
   // To add new favicons just increment the number in the [square] brackets by one, and don't forget to revise the makeArray number up by 1
   ideas = new makeArray(7);
   ideas[0] = "<link REL='SHORTCUT ICON' href='http://www.fat-pie.com/favicon1.ico'>";
   ideas[1] = "<link REL='SHORTCUT ICON' href='http://www.fat-pie.com/favicon2.ico'>";
   ideas[2] = "<link REL='SHORTCUT ICON' href='http://www.fat-pie.com/favicon3.ico'>";
   ideas[3] = "<link REL='SHORTCUT ICON' href='http://www.fat-pie.com/favicon4.ico'>";
   ideas[4] = "<link REL='SHORTCUT ICON' href='http://www.fat-pie.com/favicon8.ico'>";
   ideas[5] = "<link REL='SHORTCUT ICON' href='http://www.fat-pie.com/favicon9.ico'>";
   ideas[6] = "<link REL='SHORTCUT ICON' href='http://www.fat-pie.com/favicon11.ico'>";
   function rand(n) {
   seed = (0x015a4e35 * seed) % 0x7fffffff;
   return (seed >> 16) % n;
   }
   var now = new Date()
   var seed = now.getTime() % 0xffffffff
   document.write(ideas[rand(ideas.length)])



