<!--

// 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=product_info&cPath=8&products_id=99",

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

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

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

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

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

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

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

"index.php?main_page=product_info&cPath=21&products_id=108",

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

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

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

);



image = new initArray(

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

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

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

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

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

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

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

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

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

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

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

"/images/main/12b.jpg"
);



text = new initArray(

"organic scarves",

"Framed prints",

"bridge",

"limited edition prints",

"New prints",

"Quiet dream collection",

"Moon bright dream",

"the magic hour",

"doro",

"limited edition prints",

"hello hello",

"quiet night"

);



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>');



//-->
