<!-- Hide script from older browsers
expireDate = new Date
expireDate.setMonth(expireDate.getMonth()+6)
	
//title = ""
if (document.cookie != "") {
	chips = document.cookie.split("; ");
	for (var i=0; i < chips.length; i++) {
		crumb = chips[i].split("="); 
		if (crumb[0] == "title") {
			title =  crumb[1];
    	}
    }	
}
		
function setCookie() {
	title = document.title
	document.cookie = "title="+title+";expires=" + expireDate.toGMTString()
}
// End hiding script -->