﻿$(document).ready(function () {
    hideAll();
    $('#buttons a img').mouseover(function () {
        var src = $(this).attr("src").match(/[^\.]+/) + "Over.png";
        $(this).attr("src", src);
        var text = $(this).attr("src");
        changeText(text);
    });
    $('#buttons a img').mouseout(function () {
        var src = $(this).attr("src").replace("Over", "");
        $(this).attr("src", src);
        standardText();
    });
});
function changeText(text) {
    $('.standard').hide();
    if (text == 'images/btnLifehammerOver.png') {
        $('.lifeHammer').show();
    }
    if (text == 'images/btnClipOver.png') {
        $('.comfortClip').show();
    }
    if (text == 'images/btnTriangleOver.png') {
        $('.warningTriangle').show();
    }
    if (text == 'images/btnFireOver.png') {
        $('.fire').show();
    }
    if (text == 'images/btnVestOver.png') {
        $('.safetyVest').show();
    }
    if (text == 'images/btnEhboOver.png') {
        $('.ehbo').show();
    }
}

function standardText() {
    hideAll();
    $('.standard').show();
}
function hideAll() {
    $('.lifeHammer').hide();
    $('.comfortClip').hide();
    $('.warningTriangle').hide();
    $('.fire').hide();
    $('.safetyVest').hide();
    $('.ehbo').hide();
}
