if (jQuery.cookie('font')) {
	jQuery("#mycss").attr({"href":jQuery.cookie('font')});
}
function toggleCSS(){
	if (jQuery.cookie('font')) {
	jQuery("#mycss").attr({"href": 'assets/templates/css/middle.css'});
		jQuery.cookie('font', '', {expires:-1});
	} else {  
	jQuery("#mycss").attr({"href": '/assets/templates/css/large.css'});
		jQuery.cookie('font','/assets/templates/css/large.css',{expires:7,path:'/'});
	}
}