﻿// JScript File for index page

    var company;

    function changeLogo(company) {

    if (company == "itprovider") {
        $("IndexInfoImage").src = "images/ITProviderSplash.jpg";
        $("IndexLogo1").src = "images/ITProviderNoFade.gif";
        $("IndexInfoHdr").innerHTML = "$9M+ organic revenue growth";
        $("IndexInfoText").innerHTML = "Mardevdm partnered with an IT solution provider to develop a revenue-producing demand generation program."
        $("IndexInfoText").style.top = "+90px";
    }        
    
    if (company == "freightliner") {
        $("IndexInfoImage").src = "images/FreightlinerSplash.jpg";
        $("IndexLogo2").src = "images/FreightlinerNoFade.gif";
        $("IndexInfoHdr").innerHTML = "achieved 28% response rates";
        $("IndexInfoText").innerHTML = "Freightliner added targeted demographics about key prospects to their database and saw 28% direct response rates."
        $("IndexInfoText").style.top = "+90px";
//        return true;
    }

   if (company == "elsevier") {
        $("IndexInfoImage").src = "images/ElsevierSplash.jpg";
        $("IndexLogo3").src = "images/ElsevierNoFade.gif";
        $("IndexInfoHdr").innerHTML = "cross-media audience response";
        $("IndexInfoText").innerHTML = "Elsevier relies on mardevdm2 to invite subscriptions, promote research and engage with experts."
        $("IndexInfoText").style.top = "+90px";
//        return true;
    }

    if (company == "npg") {
        $("IndexInfoImage").src = "images/NPGSplash.jpg";
        $("IndexLogo4").src = "images/NPGNoFade.gif";
        $("IndexInfoHdr").innerHTML = "built international research panel";
        $("IndexInfoText").innerHTML = "Nature Publishing Group needed to access international academics and leading business people to build an advisory research panel."
        $("IndexInfoText").style.top = "+110px";
//        $("IndexInfoCaption").style.visibility = "hidden";
        //        return true;
    }

    if (company == "navigator") {
        $("IndexInfoImage").src = "images/NavigatorSplash.jpg";
        $("IndexLogo5").src = "images/NavigatorNoFade.gif";
        $("IndexInfoHdr").innerHTML = "50% increase in new qualified leads";
        $("IndexInfoText").innerHTML = "Navigator experienced a marked 50% increase in decision makers being spoken to per hour and uncovered new business opportunities."
        $("IndexInfoText").style.top = "+110px";
        //        return true;
    }
     
    if (company == "home") {
        $("IndexInfoImage").src = "images/HomeSplash.jpg";
        $("IndexLogo1").src = "images/ITProviderFaded.gif";
        $("IndexLogo2").src = "images/FreightlinerFaded.gif";
        $("IndexLogo3").src = "images/ElsevierFaded.gif";
        $("IndexLogo4").src = "images/NPGFaded.gif";
        $("IndexLogo5").src = "images/NavigatorFaded.gif";
        $("IndexInfoHdr").innerHTML = "global marketing <br />data and services";
        $("IndexInfoText").innerHTML = "Read about our global clients' success and request your quote to see how we can accelerate your sales<br /><br />" +
                                        "<span class=\"White13Bold\">Click on any logo to read our case studies.</span>"
//        $("IndexInfoCaption").style.visibility = "visible";
        $("IndexInfoText").style.top = "+90px";
//        return true;
    }
//    alert("company is " + company);
}
function $(sName) {

	return document.getElementById(sName);
}
