/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this script and the associated (x)html
is available at http://www.stunicholls.com/various/tabbed_pages.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This script and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


onload = function () {
    if (document.getElementById('gallery')) {
        var e, i = 0;
        while (e = document.getElementById('gallery').getElementsByTagName('DIV')[i++]) {
            if (e.className == 'on' || e.className == 'off') {
                e.onclick = function () {
                    jwplayer('player1').stop();
                    jwplayer('player2').stop();
                    jwplayer('player3').stop();
                    jwplayer('player4').stop();
                    var getEls1 = document.getElementById('gallery').getElementsByTagName('DIV');
                    var getEls2 = document.getElementById('video-container').getElementsByTagName('DIV');
                    for (var z = 0; z < getEls1.length; z++) {
                        getEls2[z].className = getEls2[z].className.replace('show', 'hide');
                        getEls1[z].className = getEls1[z].className.replace('on', 'off');
                    }
                    this.className = 'on';
                    var max = this.getAttribute('title');
                    document.getElementById(max).className = "show";
                }
            }
        }
    }
    jQuery('#tab-overview').click();
}
