//picture array
pictureList = new Array();
pictureList[0] = "<img src='http://www.tanco-autowrap.com/images/generic-image0.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[1] = "<img src='http://www.tanco-autowrap.com/images/generic-image1.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[2] = "<img src='http://www.tanco-autowrap.com/images/generic-image2.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[3] = "<img src='http://www.tanco-autowrap.com/images/generic-image3.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[4] = "<img src='http://www.tanco-autowrap.com/images/generic-image4.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[5] = "<img src='http://www.tanco-autowrap.com/images/generic-image5.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[6] = "<img src='http://www.tanco-autowrap.com/images/generic-image6.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[7] = "<img src='http://www.tanco-autowrap.com/images/generic-image7.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[8] = "<img src='http://www.tanco-autowrap.com/images/generic-image8.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[9] = "<img src='http://www.tanco-autowrap.com/images/generic-image9.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[10] = "<img src='http://www.tanco-autowrap.com/images/generic-image10.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[11] = "<img src='http://www.tanco-autowrap.com/images/generic-image11.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";
pictureList[12] = "<img src='http://www.tanco-autowrap.com/images/generic-image12.jpg' class= 'gen-img' alt='Tanco Autowrap ' />";




	
//randomization
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (pictureList.length));
if (random_number == pictureList.length){random_number = 0}
//set picture
var picture = pictureList[random_number];
