//document.write("test stuff (not a big deal)");

var mess = new Array(
'../dress/top-nav2.jpg',
'../dress/top-nav3.jpg',
'../dress/top-nav4.jpg',
'../dress/top-nav5.jpg',
'../dress/top-nav6.jpg',
'../dress/top-nav7.jpg',
'../dress/top-nav8.jpg');
var max = mess.length;
var num = Math.floor((Math.random() * max));

var BannerID = document.getElementById("section-home-top-nav");

BannerID.setAttribute("style" , "background-image:url(" + mess[num] + ");" );

BannerID.style.setAttribute('cssText', "background-image:url(" + mess[num] + ");", 0);
