<!--

// original content taken from Nic's JavaScript Page with permission

// lack of these three lines will result in copyright infringment

// made by: Nic's JavaScript Page - http://www.javascript-page.com



var currentdate = 0;

var core = 0;



function initArray() {



this.length = initArray.arguments.length;

  for (var i = 0; i < this.length; i++) {

  this[i] = initArray.arguments[i];

  }

}



link = new initArray(

"index.php?main_page=index&cPath=24",

"index.php?main_page=index&cPath=3",

"index.php?main_page=index&cPath=10_11",

"index.php?main_page=product_info&cPath=8&products_id=200",

"index.php?main_page=index&cPath=8",

"index.php?main_page=index&cPath=27",

"index.php?main_page=index&cPath=10_11",

"index.php?main_page=index&cPath=21",

"index.php?main_page=product_info&cPath=25&products_id=168",

"index.php?main_page=index&cPath=22",

"index.php?main_page=index&cPath=21",

"index.php?main_page=index&cPath=10_11"

);



image = new initArray(

"/images/main/01c.jpg",

"/images/main/02c.jpg",

"/images/main/03c.jpg",

"/images/main/04c.jpg",

"/images/main/05c.jpg",

"/images/main/06c.jpg",

"/images/main/07c.jpg",

"/images/main/08c.jpg",

"/images/main/09c.jpg",

"/images/main/10c.jpg",

"/images/main/11c.jpg",

"/images/main/12c.jpg"

);



text = new initArray(

"Organic tote bags",

"Lovely birds",

"New Prints",

"Garland tee",

"Vintage worn tees",

"eco prints",

"Little gathering",

"eco wall art",

"dream tree",

"organic tees",

"eco prints",

"quiet dream"

);



var currentdate = new Date();

var core = currentdate.getSeconds() % image.length;

var ranlink  = link[core];

var ranimage = image[core];

var rantext  = text[core];



document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" width=\"246\" height=\"222\" class="maincollage" alt=\"'+rantext+'\"></a>');



//-->
