function Show_Reach_Content(type) {
	
	// get our different types
	var types = new Array('Program', 'Upgrade', 'Premium');
	
	for (i=0; i<types.length; i++) { 
		
		// Get the objects for this
		var menu = document.getElementById('menu'+types[i]);
		var div = document.getElementById('content'+types[i]);
		var img = document.getElementById('header'+types[i]);

		// If it's equal to type, use that, else unset that
		if (types[i] == type) { 
			menu.setAttribute("class", "selected");
			div.style.display = 'block';
			img.style.display = 'block';
		}else{			
			menu.setAttribute("class", "");
			div.style.display = 'none';
			img.style.display = 'none';
		}
			
	}
	
	// Loop each type
}

function Load_Upgrade_Info(type) {
	
	// get our different types
	var types = new Array('Accuray', '3D', 'Epsilon');
	var showDiv = false;
	
	for (i=0; i<types.length; i++) { 
		
		// Get the objects for this
		var tbl = document.getElementById('upgrade'+types[i]);
		
		// If it's equal to type, use that, else unset that
		if (types[i] == type) { 
			tbl.style.display = 'block';
			showDiv = true;
		}else{			
			tbl.style.display = 'none';
		}
			
	}
	
	// Should we show this div or no
	if (showDiv) { 
		document.getElementById('upgradeContent').style.display = 'block';
	}else{
		document.getElementById('upgradeContent').style.display = 'none';
	}
	
}

function Show_Captivate_Content(type) {
	
	// get our different types
	var types = new Array('Programming', 'Components');
	
	for (i=0; i<types.length; i++) { 
		
		// Get the objects for this
		var menu = document.getElementById('menu'+types[i]);
		var div = document.getElementById('content'+types[i]);

		// If it's equal to type, use that, else unset that
		if (types[i] == type) { 
			menu.setAttribute("class", "selected");
			div.style.display = 'block';
		}else{			
			menu.setAttribute("class", "");
			div.style.display = 'none';
		}
			
	}
	
	// Loop each type
}

function Show_Captivate_Sub(type) {
	
	// get our different types
	var types = new Array('Microsite', 'Quiz', 'Survey', 'Presentation', 'TouchTables', 'Modern', 'Classic');
	
	for (i=0; i<types.length; i++) { 
		
		// Get the objects for this
		var menu = document.getElementById('menu'+types[i]);
		var div = document.getElementById('content'+types[i]);

		// If it's equal to type, use that, else unset that
		if (types[i] == type) { 
			menu.setAttribute("class", "selected");
			div.style.display = 'block';
		}else{			
			menu.setAttribute("class", "");
			div.style.display = 'none';
		}
			
	}
	
	// Loop each type
}

function Show_Fuse_Content(type) {
	
	// Did we find this item
	var found = false;
	
	// get our different types
	var types = new Array('LessThan400', '400_HCEA', '400_Hills', '400_InfoMedia', '400_LinksTech', '400_Transcore',
		'400To900', '400_900_3DExhibitor', '400_900_Aruba',  '400_900_Concur', '400_900_HBI', '400_900_NAI', '400_900_Nikko', '400_900_Rayovac', '400_900_Transcore', '400_900_Travelclick',
		'MoreThan900', '900_Edward_Don', '900_FTD', '900_Jasco', '900_Mitsubishi_Electric', '900_Mitsubishi_Electric_Automation', '900_Technotrans', '900_Tetrapak');
	
	// Loop each item
	for (i=0; i<types.length; i++) { 
		
		// Get the objects for this
		var menu = document.getElementById('menu'+types[i]);
		var div = document.getElementById('content'+types[i]);
		
		// if menu is null then menuItem = false
		var menuItem = true;
		if (menu == null) { menuItem = false;	}
				
		// If it's equal to type, use that, else unset that
		if (types[i] == type) { 
			if (menuItem == true) { menu.setAttribute("class", 'selected'); }
			div.style.display = 'block';
			found = true;
		}else{			
			if (menuItem == true) { menu.setAttribute("class", ''); }
			div.style.display = 'none';
		}
			
	}
		
	// Loop each type
	if (found == false) { alert('Gallery coming soon'); }
	
}