/*window.onload = function() {
	
	myHeight = new fx.Height('menuGP', {duration: 400});
	myHeight.hide();
		
	div = document.getElementById('menuGP');

	div.style.display = 'block';
	
}*/
if (document.addEventListener) {  
	document.addEventListener("DOMContentLoaded", cargarMenuGP, false);  
} 
function cargarMenuGP(){
	
	myHeight = new fx.Height('menuGP', {duration: 400});
	myHeight.hide();
	
	div = document.getElementById('menuGP');

	div.style.display = 'block';
	
}

/* Para Internet Explorer */  
/*@cc_on @*/  
/*@if (@_win32) 
	document.write("<script id=__ie_onload defer src=javascript:void(0)><\/script>"); 
	var script = document.getElementById("__ie_onload"); 
	script.onreadystatechange = function() { 
		if (this.readyState == "complete") { 
			cargarMenuGP(); // call the onload handler 
		} 
	}; 
/*@end @*/  
