function mTriggerMenu(changeVal){
	var list1 = document.getElementById('one');
	var list2 = document.getElementById('two');
	var list3 = document.getElementById('three');
    	document.getElementById('topNav1').className ='';
	document.getElementById('topNav2').className ='';
	document.getElementById('topNav3').className ='';
	document.getElementById('topNav4').className ='';
	
	list1.className ='hide';
	list2.className ='hide';
	list3.className ='hide';
	
	switch(changeVal) {
	    case 1:
	        list1.className='show';
	        break;
	    case 2: 
	        list2.className='show';
	        break;
	    case 3:
	        list3.className='show';
	        break;
    }
}

function mTriggerSelect(newVal) {
	newVal.className='active';
}

function resizeDiv (newVal) {

    if (newVal == 1) {
        var newHeight = document.getElementById('bottomContainer').offsetHeight;
        document.getElementById('bottomLeft').style.height = newHeight + 'px';
        document.getElementById('bottomRight').style.height = newHeight + 'px';
    }
    else if (newVal == 2) {
        var newHeight = document.getElementById('componentBottomContainer').offsetHeight;
        document.getElementById('rightColComponent').style.height = newHeight-50 + 'px';
        document.getElementById('bottomLeftComponent').style.height = newHeight-171 + 'px';
    }
}

