/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function getDetails(product)
{
    var eBrochure = document.getElementById('div-eBrochure');
    var video = document.getElementById('div-video');
    if(product == "ieb")
    {
        document.getElementById('ebrochure').src='http://zautos.com/images/dealerProducts/ebrochure.png';
        document.getElementById('video').src='http://zautos.com/images/dealerProducts/videotool.png';
        eBrochure.style.display = "block";
        video.style.display = "none";
    }
    else if(product == 'ivt')
    {
        document.getElementById('video').src='http://zautos.com/images/dealerProducts/videotool.png';
        document.getElementById('ebrochure').src='http://zautos.com/images/dealerProducts/ebrochure.png';
        video.style.display = "block";
        eBrochure.style.display = "none";
    }
}

function getHoverImage(product)
{
    if(product == 'ieb')
        document.getElementById('ebrochure').src = 'http://zautos.com/images/dealerProducts/ebrochure_mouseover.png';

    else if(product == 'ivt')
        document.getElementById('video').src = 'http://zautos.com/images/dealerProducts/videotool_mouseover.png';
}

function removeHoverImage(product)
{
    if(product == 'ieb')
        document.getElementById('ebrochure').src = 'http://zautos.com/images/dealerProducts/ebrochure.png';


    else if(product == 'ivt')
        document.getElementById('video').src = 'http://zautos.com/images/dealerProducts/videotool.png';

}


function getImageName(s)
{
    var img = s.substring(s.lastIndexOf('/') + 1, s.lastIndexOf('.') < 0 ? s.length : s.lastIndexOf('.'));
    return img;
}

