// *** TO BE CUSTOMISED ***var style_cookie_name = "style" ;var style_cookie_duration = 30 ;// *** END OF CUSTOMISABLE SECTION ***function switch_style ( css_title ){// You may use this script on your site free of charge provided// you do not remote this notice or the URL below. Script from// http://www.thesitewizard.com/javascripts/change-style-sheets.shtml  var i, link_tag ;  for (i = 0, link_tag = document.getElementsByTagName("link") ;    i < link_tag.length ; i++ ) {    if ((link_tag[i].rel.indexOf( "stylesheet" ) != -1) &&      link_tag[i].title) {      link_tag[i].disabled = true ;      if (link_tag[i].title == css_title) {        link_tag[i].disabled = false ;      }    }    set_cookie( style_cookie_name, css_title,      style_cookie_duration );  }}function set_style_from_cookie(){  var css_title = LerCookie( style_cookie_name );  if (css_title.length) {    switch_style( css_title );  }}function set_cookie ( cookie_name, cookie_value,    lifespan_in_days, valid_domain ){    // http://www.thesitewizard.com/javascripts/cookies.shtml    var domain_string = valid_domain ?                       ("; domain=" + valid_domain) : '' ;    document.cookie = cookie_name +                       "=" + encodeURIComponent( cookie_value ) +                       "; max-age=" + 60 * 60 *                       24 * lifespan_in_days +                       "; path=/" + domain_string ;}//-----------------------------------------------------------------------------------------// FUNÇÃO PARA LER COOKIES//-----------------------------------------------------------------------------------------function LerCookie(strCookie){    var strNomeIgual = strCookie + "=";    var arrCookies = document.cookie.split(';');    for(var i = 0; i < arrCookies.length; i++)    {        var strValorCookie = arrCookies[i];        while(strValorCookie.charAt(0) == ' ')        {            strValorCookie = strValorCookie.substring(1, strValorCookie.length);        }        if(strValorCookie.indexOf(strNomeIgual) == 0)        {            return strValorCookie.substring(strNomeIgual.length, strValorCookie.length);        }    }    return null;}//-----------------------------------------------------------------------------------------// FUNÇÃO PARA CHAMAR OUTRAS FUNÇÕES AO CARREGAR O SITE//-----------------------------------------------------------------------------------------function addEvent( obj, type, fn ) {	if (obj.addEventListener) {		obj.addEventListener( type, fn, false );	}	else if (obj.attachEvent) {		obj["e"+type+fn] = fn;		obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }		obj.attachEvent( "on"+type, obj[type+fn] );	}	else {		obj["on"+type] = obj["e"+type+fn];	}}addEvent(window, 'load', function(){	set_style_from_cookie();});