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/w2d1rb7nuj.jpg";
img[0] = new Image;
img[0].src = src[0];
href[0] = "http://www.skiequipmentuk.com/shop/235/372/index.htm";
i_caption[0] = "La-Sportiva";

src[1] = "http://www.skiequipmentuk.com/shop/images/home_images/5lkeu432zn.jpg";
img[1] = new Image;
img[1].src = src[1];
href[1] = "http://www.skiequipmentuk.com/shop/235/360/index.htm";
i_caption[1] = "Meindl";

src[2] = "http://www.skiequipmentuk.com/shop/images/home_images/jzcfddqmm4.jpg";
img[2] = new Image;
img[2].src = src[2];
href[2] = "http://www.skiequipmentuk.com/shop/235/354/index.htm";
i_caption[2] = "Keen";

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

src[4] = "http://www.skiequipmentuk.com/shop/images/home_images/066hxb7xqu.jpg";
img[4] = new Image;
img[4].src = src[4];
href[4] = "http://www.skiequipmentuk.com/shop/235/366/index.htm";
i_caption[4] = "Alt-Berg";


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>" );
}
