﻿window.onload = function(){
var imageURL = ["assets/templates/mystyle/images/logo_0.jpg","assets/templates/mystyle/images/logo_1.jpg","assets/templates/mystyle/images/logo_2.jpg","assets/templates/mystyle/images/logo_3.jpg","assets/templates/mystyle/images/logo_4.jpg","assets/templates/mystyle/images/logo_5.jpg","assets/templates/mystyle/images/logo_6.jpg","assets/templates/mystyle/images/logo_7.jpg"];
var imgTag = document.createElement("img");
var n = Math.floor(Math.random()*imageURL.length);
imgTag.src = imageURL[n];
document.getElementById("info").appendChild(imgTag);
}