/* This script is used to randomly display
a Product Specialist image on the Product Details
page.

Written by Jitender Saan

Please confirm with Website Administrator before
deleting this file or moving to another location.

7 June 2007, Sunday

*/

function get_specialist()
{
    var ranNum= Math.floor(Math.random()*3);
    if (ranNum == 0) {
        var imgName = "ProductSpecialist_Ashley.jpg";
        var psName = "Ashley";
    }
    else if (ranNum == 1) {
        var imgName = "ProductSpecialist_Catherine.jpg";
        var psName = "Catherine";
    }
    else {
        var imgName = "ProductSpecialist_Natalie.jpg";
        var psName = "Natalie";
    }
    document.write("<p align='center'><img src='/images/" + imgName + "' alt='To speak to our Product Specialist call " + psName + " on 1.866.208.7149 '></p>");
}