// JavaScript Document


function checkLocation() {
	
	currentLocation = location.href

	if (currentLocation.indexOf('events') != -1) setToOn('events');
	else if (currentLocation.indexOf('barsNclubs') != -1) setToOn('barsNclubs');
	else if (currentLocation.indexOf('artists') != -1) setToOn('artists');
	else if (currentLocation.indexOf('thecd') != -1) setToOn('thecd');
	else if (currentLocation.indexOf('reviews') != -1) setToOn('reviews');
	else setToOn('home');
}

function setToOn(theId) {
	if(document.getElementById) {
		document.getElementById(theId).style.color = '#F6AB0E'
	}
}