﻿function ToggleTabs(id, count) {
   for (i = 1; i <= count; i++) {
        var ht = document.getElementById('ht' + i);
        var ct = document.getElementById('ct' + i);
        if (i == id) {
            ht.className = 'headerTab selectedTab';
            ct.className = 'contentTab show';
        }
        else {
            ht.className = 'headerTab';
            ct.className = 'contentTab hide';
        }
    }
}
