/* Created by HMC May 2008    */
/*   To be used to control 2nd left panel on home page  */


var text1= "<h2>Solutions for E-Discovery</h2>At LEX On Demand we engineer E-Discovery solutions that integrate with our clients' workflows and meet the needs of their cases. We work with 'best of breed' software from all major vendors enabling us to select most effective solution for a particular case. In addition we have a team of Developers  working with our Production Facility who create custom software and scripts where no off-the-shelf products are available. <br /><br />At LEX On Demand, respect for workflow and a tradition of engineering solutions ensure an E-Discovery process and work products that are second to none!";
var text2="<h2>Solutions for Corporations</h2>Increasingly Corporate Legal Departments are taking the lead in managing litigation support on major cases: either by producing in-house or by directly liaising with a services provider. <br/><br/> LEX On Demand can consult with your Legal Department on the setting up and operating an in-house service or we can partner with you to provide Collections, Discovery (both Paper and Electronic) and Review services. With either approach, LEX On Demand will ensure that you are prepared to respond to Discovery and that productions are managed cost-effectively and efficiently.";
var text3="<h2>Solutions for Consultancies</h2>LEX On Demand's Solutions Engineering approach to Discovery, together with its long history of providing litigation support solutions and its in-house Development Team, make it an ideal partner for Consultancies: whether focused on Forensics and Collections Processes or on the Management and Support of Discovery Reviews. <br/><br/>LEX On Demand can provide the expertise to support and extend service offerings as well as specialist technical assistance in areas such as Lotus Notes Processing, Review Platform Hosting, Data Mining Solutions and custom Report Development.";
var text4="<h2>Solutions for Law Firms</h2>LEX On Demand has a long history of working with Law Firms on their Discovery and Review needs. We understand the challenges of the Law Firm environment and the need for fast turn-around, quality deliverables and constant communication. <br/><br/> At LEX On Demand, our team of litigation support experienced, tech savvy, Project Managers will work with you to evaluate possible processing, production and review options and determine the approach that will best meet your needs, timelines and budget. In collaboration with our Production Facility and Sales Team, they will ensure your projects are carried out and delivered to your satisfaction.";

function changePanel(n) { 
    var myElement = document.getElementById("left_panel_2");
    if (n==4) {
        myElement.style.backgroundColor="#EEEEEE";
        myElement.innerHTML=text4;
    }
    else if (n==3) {
        myElement.style.backgroundColor="#E1E1E1";
        myElement.innerHTML=text3;
    }
    else if (n==2) {
         myElement.style.backgroundColor="#CCCCCC";
         myElement.innerHTML=text2;
    }
    else {
        myElement.style.backgroundColor="#B7B7B7";
        myElement.innerHTML=text1;
    }
}
