// JavaScript Document
function hacerActual(){ 
var i,x,d,hr,ha,ef,a,ag;
	if(document.getElementById){
		d=document.getElementById('menuArriba');
		if(d){
			hr=window.location.href;
			ha=d.getElementsByTagName("A");
			if(ha&&ha.length){
				for(i=0;i<ha.length;i++){
					if(ha[i].href){
						if(hr.indexOf(ha[i].href)>-1){	
							ha[i].className="activo";
							ha[i].removeAttribute('href');
							ha[i].firstChild.className="activo";
							
						}
					}
				}
			}
		}
	}
}

function abrirForzado(strLink){
var i,x,d,hr,ha,ef,a,ag;
	if(document.getElementById){
		d=document.getElementById('menuArriba');
		if(d){
			hr="http://www.videoalien.com/tienda/" + strLink;
			ha=d.getElementsByTagName("A");
			if(ha&&ha.length){
				for(i=0;i<ha.length;i++){
					if(ha[i].href){
						if(hr.indexOf(ha[i].href)>-1){
							ha[i].className="activo";
							ha[i].removeAttribute('href');
							ha[i].firstChild.className="activo";
							
						}
					}
				}
			}
		}
	}
}



function P7_TMopenForzado(strLink){ //v2.5 by Project Seven Development(PVII)
 var i,x,d,hr,ha,ef,a,ag;
 	if(document.getElementById){
		d=document.getElementById('menuArriba');
 		if(d){
			hr=strLink;
			ha=d.getElementsByTagName("A");
			if(ha&&ha.length){
 				for(i=0;i<ha.length;i++){
					if(ha[i].href){
						if(hr.indexOf(ha[i].href)>-1){
 							ha[i].className="activo";
							ha[i].removeAttribute('href');
							ha[i].firstChild.className="activo";
							a=ha[i].parentNode.parentNode;
							while(a){
 								if(a.firstChild && a.firstChild.tagName=="A"){
									if(a.firstChild.onclick){
 										ag=a.firstChild.onclick.toString();
											if(ag&&ag.indexOf("P7_TMenu")>-1){
 												P7_TMenu(a.firstChild,1);
											}
										}
									}
									a=a.parentNode;
								}
							}
						}
					}
				}
			}
		}
}

