function footerAbajo(){
	if (navigator.appVersion.indexOf("MSIE 7") != -1) { //INTERNET EXPLORER 7
		document.getElementById("capaFooter").style.top = window.screen.availHeight - 24 + "px";
		document.getElementById("capaFooter").style.left = window.screen.availWidth - 260 + "px";
	}else if (navigator.appVersion.indexOf("MSIE 6") != -1) { //INTERNET EXPLORER 6
		document.getElementById("capaFooter").style.top = window.screen.availHeight - 24 + "px";
		document.getElementById("capaFooter").style.left = window.screen.availWidth - 220 + "px";
	}else{ //RESTO NAVEGADORES
		document.getElementById("capaFooter").style.top = document.height - 24 + "px";
		document.getElementById("capaFooter").style.left = document.width - 240 + "px";
	}
}

function verMenu(cual){
	if (cual == 'about') {
		if (document.getElementById('brandLi').style.visibility == 'visible') {
			document.getElementById('brandLi').style.position = 'absolute';
			document.getElementById('brandLi').style.visibility = 'hidden';
			document.getElementById('companyLi').style.position = 'absolute';
			document.getElementById('companyLi').style.visibility = 'hidden';
		}else {
			document.getElementById('brandLi').style.position = 'relative';
			document.getElementById('brandLi').style.visibility = 'visible';
			document.getElementById('companyLi').style.position = 'relative';
			document.getElementById('companyLi').style.visibility = 'visible';
			
			document.getElementById('colection1Li').style.position = 'absolute';
			document.getElementById('colection1Li').style.visibility = 'hidden';
			document.getElementById('colection2Li').style.position = 'absolute';
			document.getElementById('colection2Li').style.visibility = 'hidden';
			
			document.getElementById('contacto1Li').style.position = 'absolute';
			document.getElementById('contacto1Li').style.visibility = 'hidden';
			document.getElementById('contacto2Li').style.position = 'absolute';
			document.getElementById('contacto2Li').style.visibility = 'hidden';
		}
	}else if(cual == 'coleccion'){
		if (document.getElementById('colection1Li').style.visibility == 'visible') {
			document.getElementById('colection1Li').style.position = 'absolute';
			document.getElementById('colection1Li').style.visibility = 'hidden';
			document.getElementById('colection2Li').style.position = 'absolute';
			document.getElementById('colection2Li').style.visibility = 'hidden';
		}else{
			document.getElementById('brandLi').style.position = 'absolute';
			document.getElementById('brandLi').style.visibility = 'hidden';
			document.getElementById('companyLi').style.position = 'absolute';
			document.getElementById('companyLi').style.visibility = 'hidden';

			document.getElementById('colection1Li').style.position = 'relative';
			document.getElementById('colection1Li').style.visibility = 'visible';
			document.getElementById('colection2Li').style.position = 'relative';
			document.getElementById('colection2Li').style.visibility = 'visible';
			
			document.getElementById('contacto1Li').style.position = 'absolute';
			document.getElementById('contacto1Li').style.visibility = 'hidden';
			document.getElementById('contacto2Li').style.position = 'absolute';
			document.getElementById('contacto2Li').style.visibility = 'hidden';
		}
	} else {
	
		if (document.getElementById('contacto1Li').style.visibility == 'visible') {
			document.getElementById('contacto1Li').style.position = 'absolute';
			document.getElementById('contacto1Li').style.visibility = 'hidden';
			document.getElementById('contacto2Li').style.position = 'absolute';
			document.getElementById('contacto2Li').style.visibility = 'hidden';
		}else{
			document.getElementById('brandLi').style.position = 'absolute';
			document.getElementById('brandLi').style.visibility = 'hidden';
			document.getElementById('companyLi').style.position = 'absolute';
			document.getElementById('companyLi').style.visibility = 'hidden';
			
			document.getElementById('colection1Li').style.position = 'absolute';
			document.getElementById('colection1Li').style.visibility = 'hidden';
			document.getElementById('colection2Li').style.position = 'absolute';
			document.getElementById('colection2Li').style.visibility = 'hidden';
			
			document.getElementById('contacto1Li').style.position = 'relative';
			document.getElementById('contacto1Li').style.visibility = 'visible';
			document.getElementById('contacto2Li').style.position = 'relative';
			document.getElementById('contacto2Li').style.visibility = 'visible';
		}
	}
}

function mirarOpcion(){
	var url = location.href;
	if (url.indexOf("about") != -1){
			document.getElementById('brandLi').style.position = 'relative';
			document.getElementById('brandLi').style.visibility = 'visible';
			document.getElementById('companyLi').style.position = 'relative';
			document.getElementById('companyLi').style.visibility = 'visible';
	}else{
			document.getElementById('brandLi').style.position = 'absolute';
			document.getElementById('brandLi').style.visibility = 'hidden';
			document.getElementById('companyLi').style.position = 'absolute';
			document.getElementById('companyLi').style.visibility = 'hidden';
	}
		
	if (url.indexOf("collections") != -1) {
				document.getElementById('colection1Li').style.position = 'relative';
				document.getElementById('colection1Li').style.visibility = 'visible';
				document.getElementById('colection2Li').style.position = 'relative';
				document.getElementById('colection2Li').style.visibility = 'visible';
	}else{
				document.getElementById('colection1Li').style.position = 'absolute';
				document.getElementById('colection1Li').style.visibility = 'hidden';
				document.getElementById('colection2Li').style.position = 'absolute';
				document.getElementById('colection2Li').style.visibility = 'hidden';
	}
	if (url.indexOf("contact") != -1) {
				document.getElementById('contacto1Li').style.position = 'relative';
				document.getElementById('contacto1Li').style.visibility = 'visible';
				document.getElementById('contacto2Li').style.position = 'relative';
				document.getElementById('contacto2Li').style.visibility = 'visible';
	}else{
				document.getElementById('contacto1Li').style.position = 'absolute';
				document.getElementById('contacto1Li').style.visibility = 'hidden';
				document.getElementById('contacto2Li').style.position = 'absolute';
				document.getElementById('contacto2Li').style.visibility = 'hidden';
	}
}

//window.onload = mirarOpcion();
