// JavaScript Document
var profutbol={
	Utilities:{
		f_show2:function (divName,divDisplay) {
			document.getElementById(divName).style.display=divDisplay;
		} 		
	},
	
	Main:{
		init:function(){
			var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", 
							{imgDown:"SpryAssets/SpryMenuBarDownHover.gif", 
							imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});			
		}
	},
	
	Services:{
		Hide:function(){
			profutbol.Utilities.f_show2('divInstalacion','none');
			profutbol.Utilities.f_show2('divVentajas','none');
			profutbol.Utilities.f_show2('divProyectos','none');
		},
		showProjects:function(){
			profutbol.Services.Hide();
			profutbol.Utilities.f_show2('divProyectos','');			
		},
		showAdvange:function(){
			profutbol.Services.Hide();
			profutbol.Utilities.f_show2('divVentajas','');			
		},
		showInstalations:function(){
			profutbol.Services.Hide();
			profutbol.Utilities.f_show2('divInstalacion','');			
		}
	}
}