<!--
  var pic=new Array();
       pic[0]="images/backgrounds/image-home-1.jpg";
       pic[1]="images/backgrounds/image-home-2.jpg";
       pic[2]="images/backgrounds/image-home-3.jpg";
	   pic[3]="images/backgrounds/image-home-4.jpg";
	   pic[4]="images/backgrounds/image-home-5.jpg";

  var num=Math.floor(Math.random()*pic.length);

window.onload=function() {
     document.getElementById('content-home').style.backgroundImage='url('+pic[num]+')';
}
//-->