/* this is the code for the javapoo.js file */
var url = "http://www.bigangrypixel.com/client/womensclub/"
var index = url+"index.html";
var about = url+"about.html";
var members = url+"membership.html";
var community = url+"community.html";
var contact = url+"contact.html";

if(window.location.href==index){
	document.getElementById("index").src="images/btnHome2.html"
}
else if(window.location.href==about){
	document.getElementById("about").src=url+"images/btnAbout2.gif"
}
else if(window.location.href==members){
	document.getElementById("membership").src=url+"images/btnMembers2.gif"
}
else if(window.location.href==community){
	document.getElementById("community").src=url+"images/btnCommunity2.gif"
}
else if(window.location==contact){
	document.getElementById("contact").src="images/btnContact2.html"
} 


/* end script */



