function loadtheCookies(){
	theCookies=0;
	if(!theCookies) theCookies = new Array();	
	var cookieArray = document.cookie.split(';');
	for(i=0;i<cookieArray.length;i++){
		var nameValue = cookieArray[i].split('=');
		if(nameValue[0].substring(0,1)==" ") nameValue[0] = nameValue[0].substring(1);
		theCookies[nameValue[0]]=nameValue[1];
	}
	return theCookies;
}
Cookies = loadtheCookies();
//alert(unescape(Cookies['clickerID']));	