$(document).ready(function(){

	//accessibility style switching from preferences saved in cookie
	var cookie = readCookie("main");
	if(cookie) {
		var title = cookie;
		$("#main").attr({href : "/layouts/css/"+title+".css"});
	}
	
	var cookie = readCookie("size");
	if(cookie) {
		var title = cookie;
		$("#size").attr({href : "/layouts/css/"+title+".css"});
	}
	
});
