// JavaScript Document
function getCookie(c_name) {
	if (document.cookie.length>0) {
		c_start=document.cookie.indexOf("size=")
		if (c_start!=-1) { 
			c_start=c_start + c_name.length+1 
			c_end=document.cookie.indexOf(";",c_start)
			if (c_end==-1) c_end=document.cookie.length
			return unescape(document.cookie.substring(c_start,c_end))
		} 
	  }
	 return ""
}

function setCookie(value) {
	document.cookie=""
	document.cookie="size=" +value
	//alert("size="+value)
	var sURL = unescape(window.location.pathname)
	window.location.href = sURL
}



function checkCookie() {
	size=getCookie('size')
	if (size!=null && size!="") {
		//alert('size is set at '+size+'!')
	} else {
		setCookie(10)
	}
}
checkCookie();
document.write("<LINK REL=StyleSheet HREF='../layout-menu"+size+".css' TYPE='text/css'>")