var archiveDiv = document.getElementById('archives');
var archives = archiveDiv.getElementsByTagName('a');
for ( i=0; i<archives.length; i++ ) {
	var link = archives[i];
	if (link.getAttribute('href') == document.location) {
		link.className = 'selected';
	}
}
