var numMenus = 11;

window.onload = function(){
	fixHeight();
}

function menuSelect(num){

	if(num==11){
		document.getElementById('contact').style.display = 'none';
		document.getElementById('menu11').style.display = 'none';
	}else{
		document.getElementById('contact').style.display = '';
		document.getElementById('menu11').style.display = '';
	}
	
	for(var i=1; i<=11; i++){
	
		if(i==num){
			
			document.getElementById('menu'+i).className = 'active';
			document.getElementById('content'+i).style.display = '';
			
		}else{
		
			document.getElementById('menu'+i).className = '';
			document.getElementById('content'+i).style.display = 'none';
		
		}
	
	}
	
	fixHeight();

}

function fixHeight(){

	var el_left = document.getElementById('left').offsetHeight;
	var el_right = document.getElementById('right').offsetHeight;
	
	var heightToUse = 0;
	
	if(el_left>el_right){
		heightToUse = el_left;
	}else{
		heightToUse = el_right;
	}
	
	heightToUse -= 50;
	
	document.getElementById('left').style.height = heightToUse + "px";
	document.getElementById('right').style.height = heightToUse + "px";

}

function launchTerms(){
		window.open('http://filesfromdadcreative.starwoodpromos.com/plannersedge/hotels.html','terms','left=20,top=20,width=500,height=450,toolbar=0,resizable=1,menu=0,scrollbars=1,status=0');
	}
