// JavaScript Document
var imgs = new Array();
var linksArray = new Array();
imgs.push("images/sponEPA.png");
imgs.push("images/sponTEAG.png");
imgs.push("images/sponSFI.png");
imgs.push("images/sponHEA.png");
imgs.push("images/sponEI.png");
imgs.push("images/sponDSE.png");


linksArray.push("http://www.epa.ie/");
linksArray.push("http://www.teagasc.ie/");
linksArray.push("http://www.sfi.ie/home/index.asp");
linksArray.push("http://www.hea.ie/index.cfm/page/category/id/139");
linksArray.push("http://www.enterprise-ireland.com/");
linksArray.push("http://www.forfas.ie/");

function rndmImg(root)
{
      var tmpArry = imgs.concat();
      //var pics = root.getElementsByTagName("img");
      var len = imgs.length;
      for(var i=0; i<len; i++)
      {
            var rnd = Math.floor(Math.random()*tmpArry.length);
            document.getElementById(i+11).src = tmpArry.splice(rnd,1);
            document.getElementById(i+1).href = linksArray.splice(rnd,1);
      }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}