window.onload=function (){
	var menublock = document.getElementById("menublock");
	menublock.innerHTML = menublock.innerHTML + '<a href="javascript:" id="switchTheme" title="Изменить тему" alt="Изменить тему"></a>';

	document.getElementById("switchTheme").onclick = function(){
		var tcookie = decodeURIComponent(getPlainCookie ("theme")),
		tstyle=document.getElementById("BaseStyle"),
		tattr = (tstyle && tstyle.getAttribute && tstyle.getAttribute("href")) || null,
		tfile = "http://www.kamin-trofimov.ru/_mod_files/_css/common_new.css";
		
		if (tstyle !=null && tattr !=null){
			if(tcookie=='http://www.kamin-trofimov.ru/_mod_files/_css/common_new.css')
				tfile = "http://www.kamin-trofimov.ru/_mod_files/_css/mystyle.css";

			
			setCookie("theme",tfile,"/",60,0);
			tstyle.setAttribute("href",tfile);
		}
	}


	var tcookie = getPlainCookie ("theme");
	if (tcookie!=null){
		var tstyle=document.getElementById("BaseStyle");

		if (tstyle !=null){
			tstyle.setAttribute("href",decodeURIComponent(tcookie));
		}
	}
	return true;
}
