// Me fijo que estilo cargo

if(document.cookie.indexOf("white") == -1 ){
	 var style = document.getElementById("hojaEstilo");
	 style.href = "estilos/estilos.css";
	}else {
		var style = document.getElementById("hojaEstilo");
		style.href = "estilos/estilosWhite.css";
	    }		
//cargo la pagina para hacer cualquier cambio
window.onload = function() {
var bandera = 0;
var boton = document.getElementById("btn");
var color = document.getElementById("color");

    boton.onclick=function(){
	   if(bandera == 0){
		   //cambio img de color
		   color.src = "img/colorBlack.jpg"
		   //cookie
		   document.cookie = 'estilo=white';
		   var galletas = document.cookie;
		   var nombre = galletas.indexOf("white");
		   var style = document.getElementById("hojaEstilo");
		   style.href = "estilos/estilosWhite.css";
		   bandera = 1;
	   }else{
		   //cambio img de color
		   color.src = "img/colorWhite.jpg"
		   //cookie
		   document.cookie = 'estilo=black';
		   var galletas = document.cookie;
     	   var nombre = galletas.indexOf("white");
		   var style = document.getElementById("hojaEstilo");
		   style.href = "estilos/estilos.css";
		   bandera = 0;
		   }
	}
   
}
