function selectedNav(){

/* HOME */
if( location.href == 'http:\/\/www.emeraldcitydelivery.com\/' ) {
		document.getElementById('homeButton').className = 'selected';
}
if( location.href == 'http:\/\/emeraldcitydelivery.com\/' ) {
		document.getElementById('homeButton').className = 'selected';
}
if( location.href == 'http:\/\/www.emeraldcitydelivery.com\/index.shtml' ) {
		document.getElementById('homeButton').className = 'selected';
}
if( location.href == 'http:\/\/emeraldcitydelivery.com\/index.shtml' ) {
		document.getElementById('homeButton').className = 'selected';
}

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

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

/* GET A QUOTE */
if( location.href == 'http:\/\/www.emeraldcitydelivery.com\/get_a_quote.shtml' ) {
		document.getElementById('quoteButton').className = 'selected';
}
if( location.href == 'http:\/\/emeraldcitydelivery.com\/get_a_quote.shtml' ) {
		document.getElementById('quoteButton').className = 'selected';
}

/* JOB OPPORTUNITIES */
if( location.href == 'http:\/\/www.emeraldcitydelivery.com\/job_opportunities.shtml' ) {
		document.getElementById('jobButton').className = 'selected';
}
if( location.href == 'http:\/\/emeraldcitydelivery.com\/job_opportunities.shtml' ) {
		document.getElementById('jobButton').className = 'selected';
}

/* CONTACT */
if( location.href == 'http:\/\/www.emeraldcitydelivery.com\/contact_us.shtml' ) {
		document.getElementById('contactButton').className = 'selected';
}
if( location.href == 'http:\/\/emeraldcitydelivery.com\/contact_us.shtml' ) {
		document.getElementById('contactButton').className = 'selected';
}



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