// get the cookie and see what css he wants to use

if (document.cookie == "") {
	cssPick = '_css_crushed_velvet.css';
}
else {
	thisCookie = document.cookie.split("; ");
	cssPick = '';	

	for (i=0; i<thisCookie.length; i++) {
		thisCookieName = thisCookie[i].split("=")[0];
		thisCookieValue = thisCookie[i].split("=")[1];
		if (thisCookieName == 'cssPick') {
			cssPick = thisCookieValue;
			break;
		};
	};
	if (cssPick == "") {
		cssPick = '_css_crushed_velvet.css';
	};
};

document.write("<LINK REL=stylesheet HREF=\"/" + cssPick + "\" TYPE=\"text/css\">");

