﻿$(function () {
    var tabContainers = $('#listEvents > div');
    tabContainers.hide().filter(':first').show();

    $('.lnkTab').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        var clickedImg = $(this).children('img').first().attr("src")
        $('.imgTab').each(function () {
            if ($(this).attr("src") == clickedImg) {
                if ($(this).attr("src").indexOf("_b.") == -1) {
                    $(this).attr("src", $(this).attr("src").split(".").join("_b."));
                }
            } else {
                $(this).attr("src", $(this).attr("src").split("_b.").join("."));
            }
        })
        $(this).enabled
        return false;
    })
});
