/* requires jquery.cookie plugin */
function setCookie(thename,thevalue,expiredays,thepath,thedomain){
	$.cookie(thename, thevalue, { expires: expiredays, path: thepath, domain: thedomain, secure: false });
}
function getCookie(thename){
	return $.cookie(thename);
}
