// common js file for Vehicles section
// This should contain js functions specific to the vehicles section to 
// minimise in-page js functions and also keep the js files to a manageable size

// FUNCTION LIST
// launchFeature()
// showFeature()



function showFeature(column,feature) {
	var panel = document.getElementById("col"+column+"featurepanel"+feature);
	var divSet = document.getElementsByTagName("DIV");
	for (var divNo=0;divNo!=divSet.length-1;divNo++) {
		if (divSet[divNo]!=panel) {
			if (divSet[divNo].id.match("col"+column+"featurepanel")) {
				divSet[divNo].style.display="none";
			}
		}
	}
	panel.style.display="block";
}


	
