var GRADOS = {
	

init: function(){
	

	
	var abrirGrados = document.getElementById('grados').getElementsByTagName('a')[0];
		abrirGrados.onclick = function(){
			
			
			
			document.getElementById('servicios').style.position ='relative';
			
			if(document.getElementById('bocadillo').style.display == 'block'){
				document.getElementById('bocadillo').style.display = 'none';
				document.getElementById('servicios').style.position ='inherit';
				return false;
			}else {				
				document.getElementById('bocadillo').style.display = 'block';
				return false;
			}
			
		}		
	
	var cerrarGrados = document.getElementById('cerrarGrados');
		cerrarGrados.onclick = function(){
			document.getElementById('bocadillo').style.display = 'none';
			document.getElementById('servicios').style.position ='inherit';
			return false;
		}
	}
	
}



// añadido de eventos realizado como en http://simon.incutio.com/archive/2004/05/26/addLoadEvent

function addLoadEvent(fn) {
	var old = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = fn;
	} else {
		window.onload = function() {
			old();
			fn();
		}
	}
}


addLoadEvent(function() {
	GRADOS.init();
});

