// Javascript for tabbed info on the web design portfolio pages. //


var imgPath = "../Images/Interface/tabs/";
var nowShowing;

function initialise() {
nowShowing = "screenshotA"; // a default must be set
document.getElementById(nowShowing).style.display = "block";
}

function toggleDisplay(eID) {
document.getElementById(nowShowing).style.display = "none";
document.getElementById(eID).style.display = "block";
nowShowing = eID
}

function imgSwap(tabID, tImg){
	document.images[tabID].src=eval("'" + imgPath+tImg + "'");
}


//var imgPath = "../Images/Interface/tabs/";
//var nowShowing;

//function initialise() {
// nowShowing = "screenshot"; // a default must be set
// document.getElementById(nowShowing).style.display = "block";
// document.getElementById(nowShowing + "Selector").className = "selectedArea";
//}

//function toggleDisplay(eID) {
 // alter display of elements 
// document.getElementById(nowShowing).style.display = "none";
// document.getElementById(eID).style.display = "block";
 // alter navigation by changing the classes
// document.getElementById(nowShowing + "Selector").className = "nonSelectedArea";
// document.getElementById(eID + "Selector").className = "selectedArea";
 // reset current indicator
// nowShowing = eID;
//}

//function imgSwap(tabID, tImg){
//document.images[tabID].src=eval("'" + imgPath+tImg + "'");
//}