function selectedNav(){

/* HOME */
if( location.href == 'http:\/\/beneficialdesign.com\/inapinch\/' ) {
		document.getElementById('homeButton').className = 'selected';
		document.getElementById('introText').className = 'introTextVisible';

}
if( location.href == 'http:\/\/www.beneficialdesign.com\/inapinch\/' ) {
		document.getElementById('homeButton').className = 'selected';
		document.getElementById('introText').className = 'introTextVisible';

}
if( location.href == 'http:\/\/beneficialdesign.com\/inapinch\/index.shtml' ) {
		document.getElementById('homeButton').className = 'selected';
		document.getElementById('introText').className = 'introTextVisible';
}
if( location.href == 'http:\/\/www.beneficialdesign.com\/inapinch\/index.shtml' ) {
		document.getElementById('homeButton').className = 'selected';
		document.getElementById('introText').className = 'introTextVisible';
}


/* ABOUT */
if( location.href == 'http:\/\/beneficialdesign.com\/inapinch\/who_we_are.shtml' ) {
		document.getElementById('aboutButton').className = 'selected';
}
if( location.href == 'http:\/\/www.beneficialdesign.com\/inapinch\/who_we_are.shtml' ) {
		document.getElementById('aboutButton').className = 'selected';
}


/* SERVICES */
if( location.href == 'http:\/\/beneficialdesign.com\/inapinch\/our_services.shtml' ) {
		document.getElementById('servicesButton').className = 'selected';
}
if( location.href == 'http:\/\/www.beneficialdesign.com\/inapinch\/our_services.shtml' ) {
		document.getElementById('servicesButton').className = 'selected';
}


/* TESTIMONIALS */
if( location.href == 'http:\/\/beneficialdesign.com\/inapinch\/specials.shtml' ) {
		document.getElementById('testimonialsButton').className = 'selected';
}
if( location.href == 'http:\/\/www.beneficialdesign.com\/inapinch\/specials.shtml' ) {
		document.getElementById('testimonialsButton').className = 'selected';
}


/* CONTACT */
if( location.href == 'http:\/\/beneficialdesign.com\/inapinch\/contact.shtml' ) {
		document.getElementById('contactButton').className = 'selected';
		document.getElementById('introText').className = 'introTextVisible';
}
if( location.href == 'http:\/\/www.beneficialdesign.com\/inapinch\/contact.shtml' ) {
		document.getElementById('contactButton').className = 'selected';
		document.getElementById('introText').className = 'introTextVisible';
}



else {
		document.write('');
}
}