function highlighter() {
	
var splitter=document.title;
var pageName=splitter.split(" ");
var changeIt=pageName[4].toLowerCase();


var theTag=document.getElementById(changeIt);
//theTag.style.color='#ffffff';
theTag.style.backgroundColor='#54b948';

}



function showMe($theDiv) {
	
$show=document.getElementById($theDiv);

$show.style.display="block";


$hide=document.getElementById('readMore');
$hide.style.display="none";
}


function pictureFlip($project,$artist,$number,$total){
//swap out the proper pic	
var thePic=document.getElementById("mainPic");
var thePath="projects/"+$project+"/"+$artist+"/"+$number+".jpg";
thePic.src=thePath;
	
//turn all thumb squares blue
for($i=1;$i<=$total;$i++){
	
document.getElementById("t"+$i).src="images/thumbBlue.gif";	
}

//turn active thumb green

document.getElementById("t"+$number).src="images/thumbGreen.gif";	

}