// Thorpe Molloy Executive - Executive Opportunities
// Internet Strategies UK Ltd - Kevin Mitchell

var lastOpp = 1;
function showOpp(myOpp) {
// Check to see if this is a valid click
	if(myOpp!=lastOpp) {
	// - Set clicked object
		// Show selection arrow
		document.getElementById([myOpp+'a']).innerHTML = "»";
		// Set text to grey class
		document.getElementById([myOpp+'c']).className = "grey";
		// Display new content
		document.getElementById([myOpp+'b']).style.display = "block";
	// - Set last object
		// Hide last content
		document.getElementById([lastOpp+'b']).style.display = "none";
		// Clear last selection
		document.getElementById([lastOpp+'a']).innerHTML = "";
		// Set text class to white
		document.getElementById([lastOpp+'c']).className = "aSel";
	// - Set this selection as lastOpp for next click
		lastOpp = myOpp;
	}
}