var styles = new Array('/new/cz_style.css','/new/de_style.css','/new/en_style.css');

var styleNr = getCookie('SPALENSKY_CSS');
if (!styleNr || !styles[styleNr]) styleNr = 0;

document.write("<style type='text/css' media='screen'> @import '/new/global_style.css'; </style>");
document.write("<style type='text/css' media='screen'> @import '"+styles[styleNr]+"'; </style>");
	
function setStyle(nr) {
	var ex = new Date();
	ex = new Date(ex.getTime() + 1000 * 60 * 60 * 24 * 30);
	setCookie('SPALENSKY_CSS', nr, ex, '/');
	document.location.reload();
	}

function setCookie(cookieName, cookieValue, expires, path, domain, secure) {
	document.cookie = escape(cookieName) + '=' + escape(cookieValue)
		+ (expires ? '; EXPIRES=' + expires.toGMTString() : '')
		+ (path ? '; PATH=' + path : '')
		+ (domain ? '; DOMAIN=' + domain : '')
		+ (secure ? '; SECURE' : '');
	}
function getCookie(cookieName) {
	var cookieValue = null;
	if (document.cookie) {
		var posName = document.cookie.indexOf(escape(cookieName) + '=');
		if (posName!=-1) {
			var posValue = posName + (escape(cookieName) + '=').length;
			var endPos = document.cookie.indexOf(';', posValue);
			if (endPos!=-1) cookieValue = unescape(document.cookie.substring(posValue,endPos));
			else cookieValue = unescape(document.cookie.substring(posValue));
			}
		}
	return cookieValue;
	}

