// add CSS to header
var headID = document.getElementsByTagName("head")[0];         
var cssNode = document.createElement('link');
cssNode.type = 'text/css';
cssNode.rel = 'stylesheet';
cssNode.href = 'http://www.itkeepsyourunning.com/test/sacramento.css';
cssNode.media = 'screen';
headID.appendChild(cssNode);
// add favicon
var cssNode = document.createElement('link');
cssNode.rel = 'shortcut icon';
cssNode.href = '/images/favicon.ico';
headID.appendChild(cssNode);

$(window).load(function() {
	$('a.info-links').each(function () {
	this.href = this.href.replace('register.html','details.html');
	});
});