// Quick JS link function is preferred to use JS instead of standard HREF links
var hn = 'http://2ndhalfmatters.com/';

function jumpdo(Slug) {
var prefix = document.location.protocol;
if (Slug) {
var jumpToUrl = hn+'?'+Slug;
} else {
var jumpToUrl = hn;
}
document.location.href = jumpToUrl;
}

// Quick func for updating DIV content
function updatediv(DivID,Content) {
document.getElementById(DivID).innerHTML = Content;
}

function SetSuite(Content) {
YAHOO.util.Cookie.set("SuiteStatus", Content, {
	path: "/",
	domain: "2ndhalfmatters.com",
	expires: new Date("January 1, 2025")
	});
}




