function changeImg(num) {
var I1 = document.getElementById('panel1');
var I2 = document.getElementById('panel2');
var I3 = document.getElementById('panel3');
var I4 = document.getElementById('tab1bg');
var I5 = document.getElementById('tab2bg');
var I6 = document.getElementById('tab3bg');
switch (num) {
case 1:
			I1.style.display = 'block';
			I2.style.display = 'none';
			I3.style.display = 'none';
			I4.style.background = '#449a37';
			I4.style.color = '#cbf4c5';
			I5.style.background = '#ccc';
			I5.style.color = '#44196B';
			I6.style.background = '#ccc';
			I6.style.color = '#44196B';
break;
case 2:
			I1.style.display = 'none';
			I2.style.display = 'block';
			I3.style.display = 'none';
			I4.style.background = '#ccc';
			I4.style.color = '#44196B';
			I5.style.background = '#449a37';
			I5.style.color = '#cbf4c5';
			I6.style.background = '#ccc';
			I6.style.color = '#44196B';
break;
case 3:
			I1.style.display = 'none';
			I2.style.display = 'none';
			I3.style.display = 'block';
			I4.style.background = '#ccc';
			I4.style.color = '#44196B';
			I5.style.background = '#ccc';
			I5.style.color = '#44196B';
			I6.style.background = '#449a37';
			I6.style.color = '#cbf4c5';
break;
}

}