var home_photos = ['/images/home/home_gardening.jpg','/images/home/home_laminating.jpg','/images/home/home_bespoke.jpg','/images/home/home_fashion.jpg'];

function homeInit() {
  var gr = new graphicsRandomizer('home_photo', home_photos);
  gr.display();
  
  var links = document.getElementsByTagName("a");
  for (var i=0; i<links.length; i++) {
    if (links[i].href.indexOf("/resources/ftp-access/login.aspx") != -1) {
      links[i].onclick = popUpFTPAccess;        
    }
  }
  
  if(typeof(homeInitFollowup)=="function") homeInitFollowup();
}

var homeInitFollowup;
if(typeof(window.onload)=="function") homeInitFollowup = window.onload;
window.onload = homeInit;

/* addEvent(window, 'load', homeInit); */
