/* ================================================================ 
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() {
	var e, i = 0;
	while (e = document.getElementById('gallery').getElementsByTagName ('DIV') [i++]) {
		if (e.className == 'on2' || e.className == 'off2' ||  e.className == 'on3' || e.className == 'off3') {
		e.onclick = function () {
			var getEls = document.getElementsByTagName('DIV');
				for (var z=0; z<getEls.length; z++) {
				getEls[z].className=getEls[z].className.replace('show2', 'hide2');
				getEls[z].className=getEls[z].className.replace('on2', 'off2');
				getEls[z].className=getEls[z].className.replace('on3', 'off3');
				}
			
			var thisTitle = this.getAttribute('title');
			switch (thisTitle) {
				case 'Domestic' : {
					this.className = 'on2';
					break;
				}
				case 'International' : {
					this.className = 'on3';
					break;
				}
			}
			document.getElementById(thisTitle).className = 'show2'; 
			}
		}
	}
}