menuToggle = function(menuName, returnValue){
	var itemCollection = new Array("Home", "Resources", "Community", "About", "News");
	
	for(var i = 0; i < itemCollection.length; i++){
		var itemsBin = document.getElementById("MenuItems" + itemCollection[i]);
		var spotlightBin = document.getElementById("MenuSpotlight" + itemCollection[i]);
		
		if(itemCollection[i] == menuName){
			itemsBin.style.display = "block";
			if(spotlightBin) spotlightBin.style.display = "block";
		} else {
			itemsBin.style.display = "none";
			if(spotlightBin) spotlightBin.style.display = "none";
		}
	}
	
	// spotlightBin.style.display = "block";
	// spotlightBin.blur();
	
	return returnValue;
}

loginToogle = function(){
	Effect.toggle("LoginContainer", "appear");
	return false;
}

cleanACString = function(dirtyString){
	return dirtyString.replace(/,/g,";").replace(/[^A-Za-z0-9 ;]/g, '');
}
