// JavaScript Document
var upperLimit = 6;
var imageRootName ="http://hs-design.mobiusnm.com/images/contactLinkTeasers/teaser_contactLink-";
var imageNumber = Math.floor(Math.random()*upperLimit);
var imageFullName= imageRootName + imageNumber + ".jpg";

function init() {
var theURL = "url(" + imageFullName + ")";
//alert("theURL"+theURL);
document.getElementById('teaserBox_contact').style.backgroundImage=theURL;
return;
}

window.onload = init;