BARRADERECHA = {
	inicio : function (){
		oPadre = document.getElementById("dchaabonado");
		if (oPadre) {
			oPadre = oPadre.parentNode;
			switch (true){
			 	case $.cookie('indAbonado') == 'S' :
					$("div#dchaabonado").show();
					oPadre.removeChild(document.getElementById("dcharegistrado"));
					oPadre.removeChild(document.getElementById("dchaanonimo"));
					break;
				case $.cookie('login')!= null:
					$("div#dcharegistrado").show();
					oPadre.removeChild(document.getElementById("dchaabonado"));
					oPadre.removeChild(document.getElementById("dchaanonimo"));
					break;
				default:
					$("div#dchaanonimo").show();
					oPadre.removeChild(document.getElementById("dchaabonado"));
					oPadre.removeChild(document.getElementById("dcharegistrado"));
			}
		}
	}
}
//if ($.browser.msie)
//	$(document).load(BARRADERECHA.inicio);
//else
	$(document).ready(BARRADERECHA.inicio);
