// EL GRAN HERMANO TE VIGILA

var menu_actual;
var sec_actual;
var pos_actual;
var noir=false;
var fbizq=false;

function getElementsByClass(searchClass,node,tag) {
	// Robada y adaptada de un tal 
	// Dustin Díaz [dustindiaz.com/getelementsbyclass]
	var classElements = new Array();
	if ( node == null ) node = document;
	if ( tag == null ) tag = '*';
	var els = node.getElementsByTagName(tag);
	var elsLen = els.length;
//	var pattern = new RegExp('(^\\s)'+searchClass+'(\\s$)');
	for (var i = 0, j = 0; i < elsLen; i++) {
		if (els[i].className==searchClass) {
			classElements[j] = els[i];
			j++;
		}
	}
	return classElements;
}

function crear_cookie(nombre,valor) {
	var fecha=new Date();
	fecha.setTime(fecha.getTime()+5000*24*60*60*1000);
	document.cookie=nombre+"="+valor+"; path=/; expires="+fecha.toGMTString();
}

function cambia(arg,pos) {
	if(menu_actual) menu_actual.style.display="none";
	if(sec_actual) {
		sec_actual.style.border="1px solid black";
		if(pos_actual=="arr") {
			sec_actual.style.borderBottom="none";
		} else {
			sec_actual.style.borderTop="none";
		}
	}

	menu_actual=document.getElementById(arg);
	menu_actual.style.display="block";
	sec_actual=document.getElementById("sec_"+arg);
	sec_actual.style.border="1px solid gray";
	if(pos=="arr") {
		sec_actual.style.borderBottom="1px solid black";
	} else {
		sec_actual.style.borderTop="1px solid black";
	}
	pos_actual=pos;
}

function alterna_color() {
	var imgs=getElementsByClass("color",null,"img");
	var imgs_longi=imgs.length;

	if(!noir) {
		document.styleSheets[0].deleteRule(1);
		document.styleSheets[0].insertRule("@import url('http://sutileza.impepinable.net/wp-content/themes/rei/noir.css');",1);
		crear_cookie("noir","true");
		for(var i=0;i<imgs_longi;i++) {
			imgs[i].setAttribute("src",
				imgs[i].getAttribute("src").replace("img","img/noir"));
		}
		noir=true;
	} else {
		document.styleSheets[0].deleteRule(1);
		document.styleSheets[0].insertRule("@import url('http://sutileza.impepinable.net/wp-content/themes/rei/blanc.css');",1);
		crear_cookie("noir","false");
		for(var i=0;i<imgs_longi;i++) {
			imgs[i].setAttribute("src",
				imgs[i].getAttribute("src").replace("img/noir","img"));
		}
		noir=false;
	}
}

function alterna_flboard() {
	if(!fbizq) {
		document.styleSheets[0].deleteRule(2);
		document.styleSheets[0].insertRule("@import url('http://sutileza.impepinable.net/wp-content/themes/rei/fbizq.css');",2);
		document.getElementById("alter_flboard").src="http://sutileza.impepinable.net/wp-content/themes/rei/img/flbhaciader.png";
		crear_cookie("fbizq","true");
		fbizq=true;
	} else {
		document.styleSheets[0].deleteRule(2);
		document.styleSheets[0].insertRule("@import url('http://sutileza.impepinable.net/wp-content/themes/rei/fbder.css');",2);
		document.getElementById("alter_flboard").src="http://sutileza.impepinable.net/wp-content/themes/rei/img/flbhaciaizq.png";
		crear_cookie("fbizq","false");
		fbizq=false;
	}
}