var src = new Array();
var href = new Array();
var img = new Array();
var i_caption = new Array();

src[0] = "http://www.skiequipmentuk.com/shop/images/home_images/gdmd2g08ed.jpg";
img[0] = new Image;
img[0].src = src[0];
href[0] = "";
i_caption[0] = "Giro";

src[1] = "http://www.skiequipmentuk.com/shop/images/home_images/xdywkk4d21.gif";
img[1] = new Image;
img[1].src = src[1];
href[1] = "http://www.skiequipmentuk.com/shop/235/5/index.htm";
i_caption[1] = "Therm-ic warm up technologies";

src[2] = "http://www.skiequipmentuk.com/shop/images/home_images/x01jdhvgon.gif";
img[2] = new Image;
img[2].src = src[2];
href[2] = "http://www.skiequipmentuk.com/shop/235/139/index.htm";
i_caption[2] = "Scarpa";

src[3] = "http://www.skiequipmentuk.com/shop/images/home_images/hlfchgmu0d.gif";
img[3] = new Image;
img[3].src = src[3];
href[3] = "http://www.skiequipmentuk.com/shop/235/145/index.htm";
i_caption[3] = "Tecnica";

src[4] = "http://www.skiequipmentuk.com/shop/images/home_images/tjquyhf58a.jpg";
img[4] = new Image;
img[4].src = src[4];
href[4] = "";
i_caption[4] = "Dakine";


var dt = new Date();
var cycle = Math.floor(Math.random() * 5);
if( href[cycle] != null ) {
	document.write( "<A HREF=\"" + href[cycle] + "\"><IMG SRC=\"" + src[cycle] + "\" alt=\"" + i_caption[cycle] + "\" BORDER=0></a>" );
}
else {
	document.write( "<IMG SRC=\"" + src[cycle] + "\" WIDTH=185>" );
}
