changeFont=function(fontName)
{	
	return changeStyle('font',fontName);
}

changeStyle=function(styleType,newStyle)
{
	if(styleType=='font')
	{
		font_el=document.getElementById('current_font_style');
		font_el.removeAttribute('href');
		font_el.setAttribute('href',"fonts."+newStyle+".css");
		font_el.href="fonts."+newStyle+".css";
	}

};

