// JavaScript Document

function init() {

var self=this;

this.leftContent = document.getElementById('leftContent');
this.productImages = leftContent.getElementsByTagName('DIV');

this.rightContent = document.getElementById('rightContent');
this.productDownloadSection = document.getElementById('productDownloadSection');
rightContent.innerHTML = document.getElementById('default').innerHTML;
productDownloadSection.innerHTML = document.getElementById('defaultDownloadSection').innerHTML;
this.productSections = rightContent.getElementsByTagName('DIV');

this.assignClickEvents = new function() {
		for (i=0;i<self.productImages.length;i++) {
			document.getElementById(productImages[i].id).onclick = function() {
				switchProducts(this.id);
			}
		}
	}
}

function switchProducts(productSection) {
	rightContent.innerHTML = document.getElementById(productSection+'Section').innerHTML;
	productDownloadSection.innerHTML = document.getElementById(productSection+'DownloadSection').innerHTML;
}