	// ---------------------------------------------------------------------- GLOBAL

	var oMenu = null ;

	// ---------------------------------------------------------------------- ACCIONES A REALIZAR EN ONLOAD
	onload = function(){

		oMenu = new CMenu ;
		oMenu.Create() ;
		
		//RENDER LAUNCH
		var myTimeRender = 1000 / 50 ;
		var myTimer = setInterval( 'OnFrame();', myTimeRender ) ;
		
		divSection = document.getElementById( "close" ) ;
		divSection.onmouseup = function(){ oMenu.HideSections(); } ;
		
		
	}
	
	
	function OnFrame(){
		
		oEvent.Throw( "onFrame" ) ;
		
	}