var id1a;var id2a;var id3a;var inner;function imageSwap(id1, id2, id3){	
document.getElementById(id1).style.display = "inline";	
document.getElementById(id2).style.display = "inline";		
switch(id3){		case "loughEske":			
document.t1.src = "images/sLoughEske_on.gif";			inner = "false";			break;		case "cambrian":			
//document.t2.src = "images/sCambrian_on.gif";			inner = "false";			break;		
case "palmyra":			
document.t2.src = "images/sPalmyra_on.gif";			inner = "false";			break;		case "sunnyIsles":			
document.t3.src = "images/sSunnyIsles_on.gif";			inner = "false";	}		

if(id3 == "sunnyIsles"){	document.getElementById(id3).style.background = "url(images/topNav_bg2.gif)";	
document.getElementById(id3).style.backgroundRepeat = "no-repeat";	}
else{	
document.getElementById(id3).style.background = "url(images/topNav_bg.gif)";	
document.getElementById(id3).style.backgroundRepeat = "no-repeat";	}		id1a = id1;	id2a = id2;	id3a = id3;}

function imageSwapInner(id1, id2, id3){	
document.getElementById(id1).style.display = "inline";	
document.getElementById(id2).style.display = "inline";		switch(id3){		case "loughEske":			
document.t1.src = "../images/sLoughEske_on.gif";			inner = "true";			break;		case "cambrian":			
//document.t2.src = "../images/sCambrian_on.gif";			inner = "true";			break;		
case "palmyra":			
document.t2.src = "../images/sPalmyra_on.gif";			inner = "true";			break;		case "sunnyIsles":			
document.t3.src = "../images/sSunnyIsles_on.gif";			inner = "true";	}		

if(id3 == "sunnyIsles"){	document.getElementById(id3).style.background = "url(../images/topNav_bg2.gif)";	
document.getElementById(id3).style.backgroundRepeat = "no-repeat";	}
else{	document.getElementById(id3).style.background = "url(../images/topNav_bg.gif)";	
document.getElementById(id3).style.backgroundRepeat = "no-repeat";	}		id1a = id1;	id2a = id2;	id3a = id3;}

function imageSwapRemove(){		if(inner == "false"){		
document.t1.src = "images/sLoughEske.gif";		
//document.t2.src = "images/sCambrian.gif";		
document.t2.src = "images/sPalmyra.gif";		
document.t3.src = "images/sSunnyIsles.gif";	}

else{		
document.t1.src = "../images/sLoughEske.gif";		
//document.t2.src = "../images/sCambrian.gif";		
document.t2.src = "../images/sPalmyra.gif";		
document.t3.src = "../images/sSunnyIsles.gif";	}	document.getElementById(id1a).style.display = "none";	document.getElementById(id2a).style.display = "none";	document.getElementById(id3a).style.background = "none";}