jQuery.noConflict();

jQuery(function(){
	if(jQuery.cookie('stylefont')){
		document.getElementById("jstylefont").href = jQuery.cookie('stylefont');
	}
});

function jstylefont(cssurl){
	if(cssurl){
		document.getElementById("jstylefont").href = cssurl;
		jQuery.cookie('stylefont',cssurl,{expires:30,path:'/'});
	}
}

