window.onload=rolloverInit;   function rolloverInit() {       for (var i=0; i<document.links.length; i++) {          var linkObj = document.links[i];          if (linkObj.className) {             var imgObj = document.getElementById (linkObj.className);             if (imgObj) {                setupRollover(linkObj,imgObj);             }          }       }   }   function setupRollover(thisLink,textImage) {       var defaulthome = "Acumen is helping lead the development of business journalism and information gathering in the new media age. Drawing on the knowledge of our network of experts in the transport and infrastructure sectors, we provide businesses with premium content to inform their decision making. We publish the <a href=\"http://www.transportbriefing.co.uk\">Transport Briefing</a> and <a href=\"http://www.crossrailnews.co.uk\">Crossrailnews</a> websites and provide bespoke content to publishers and other organisations seeking to develop their presence online and in print.";       thisLink.imgToChange = textImage;       thisLink.onmouseout = function() {          document.getElementById ("displaypanel2home").innerHTML=defaulthome;          this.imgToChange.src = this.outImage.src;       }       thisLink.onmouseover = function() {	      var imagename = thisLink.id;          var value = "In today's uncertain economic climate we know you need to get maximum value for every pound you spend. By offering you both journalistic and web development expertise under one roof, we can save you the cost of having to work with a number of different companies. And we're flexible too - whether you want us to manage the roll-out of a new website or just need some help writing copy for a company report, we're here to help.";          var create = "Whether you want someone to produce weekly industry news updates for your organisation's website or need to arrange a couple of case studies for a customer magazine, we can write the copy you need. Fast, professional and without any fuss - you tell us what you want to achieve and we'll do all the legwork.";          var distribute = "When you've got something to shout about, it's not always easy to track down the people who will spread the message most effectively. Any content we create for you can be forwarded to our network of contacts in the publishing industry, helping your company get valuable exposure in trade press and other media.";          var develop = "To make the most of your content we can help you develop an efficient workflow that avoids annoying technical headaches. Any content we produce for you can be supplied as an RSS feed which automatically updates your website. Or if you are looking to expand your web presence we can develop dynamic solutions using licence-free technologies such as JavaScript, PHP and MySQL.";	      switch(imagename) {             case "panely1":                document.getElementById ("displaypanel2home").innerHTML=value;		     break;             case "panely2":                document.getElementById ("displaypanel2home").innerHTML=create;	         break;             case "panely3":                document.getElementById ("displaypanel2home").innerHTML=distribute;	         break;             case "panely4":                document.getElementById ("displaypanel2home").innerHTML=develop;		     break;          }          this.imgToChange.src = this.overImage.src;       }       thisLink.outImage = new Image();       thisLink.outImage.src = textImage.src;       thisLink.overImage = new Image();       thisLink.overImage.src = "images/" + thisLink.id + ".jpg";   }