// General Site Javascript

var FlexAreas = {
	init: function() {
		var flex1 = document.getElementById('flex1');
		var flex2 = document.getElementById('flex2');
		var flex3 = document.getElementById('flex3');
		var flexa = document.getElementsByTagName('a');
		flex1.style.cursor = "pointer";
		flex2.style.cursor = "pointer";
		flex3.style.cursor = "pointer";
		for (var i = 0; i < flexa.length; i++) {
			if (flexa[i].parentNode.parentNode.id == 'flex1') {  
				flex1.href = flexa[i].href;
				flex1.onclick = function() {
					window.location.href = this.href;
				}
			} else if (flexa[i].parentNode.parentNode.id == 'flex2') {  
				flex2.href = flexa[i].href;
				flex2.onclick = function() {
					window.location.href = this.href;
				}
			} else if (flexa[i].parentNode.parentNode.id == 'flex3') {  
				flex3.href = flexa[i].href;
				flex3.onclick = function() {
					window.location.href = this.href;
				}
			}
		}
		
	}
}