// functions to return random case study blurbs for jwtsc-seo.com

function write_case_study() {
    var theText = new Array(); 


    theText[0] = "<a href=\"http://www.jwtsc-seo.com/case-studies/us-marines-seo-case-study.pdf\"><img src=\"http://www.jwtsc-seo.com/images/marines-logo.gif\" border=\"0\" width=\"130\" height=\"43\"></a><br><br>See how the JWTSC SEO Group took the Marines to #1<br><a href=\"http://www.jwtsc-seo.com/case-studies/us-marines-seo-case-study.pdf\">full story...</a></div>";

    theText[1] = "<a href=\"http://www.jwtsc-seo.com/case-studies/sutter-health-seo-case-study.pdf\"><img src=\"http://www.jwtsc-seo.com/images/sutter-logo.gif\" border=\"0\" width=\"100\" height=\"51\"></a><br><br>See how the JWTSC SEO Group took Sutter Health to #1<br><a href=\"http://www.jwtsc-seo.com/case-studies/sutter-health-seo-case-study.pdf\">full story...</a></div>";

    theText[2] = "<a href=\"http://www.jwtsc-seo.com/case-studies/maserati-seo-case-study.pdf\"><img src=\"http://www.jwtsc-seo.com/images/maserati-logo.gif\" border=\"0\" width=\"100\" height=\"136\"></a><br><br>See how the JWTSC SEO Group took Maserati to #1<br><a href=\"http://www.jwtsc-seo.com/case-studies/maserati-seo-case-study.pdf\">full story...</a></div>";

    theText[3] = "<a href=\"https://adwords.google.com/select/ProfessionalStatus?id=Rjvn-YM3diJnb8NCTf_GdA&hl=en_US\"><img src=\"http://www.jwtsc-seo.com/images/logo_qualified_pro_80.gif\" border=\"0\" width=\"80\" height=\"80\"></a><br><br>We are Google Advertising Professional Certified<br><a href=\"https://adwords.google.com/select/ProfessionalStatus?id=Rjvn-YM3diJnb8NCTf_GdA&hl=en_US\">learn more...</a></div>";

    var theRand = getRand(theText.length);
    document.write(theText[theRand]);
}

function getRand(num) {
    var result = Math.floor(Math.random() * num);
    return result;
}
