function loadMenuActions(actualPage)
{
	menuHomeBt 			= document.getElementById('menuHome');
	menuWhyPlumbbBt 	= document.getElementById('menuWhyPlumbb');
	menuFaqsBt 			= document.getElementById('menuFaqs');
	menuAboutUsBt 		= document.getElementById('menuAboutUs');
	menuGetPlumbbBt 	= document.getElementById('menuGetPlumbb');
	menuMyPlumbbBt 		= document.getElementById('menuMyPlumbb');
	
	switch (actualPage)
	{
		case 'menuHome':
			menuHomeBt.className = 'float menuHomeOver';
				break;
				
		case 'menuWhyPlumbb':
			menuWhyPlumbbBt.className = 'float menuWhyPlumbbOver';
				break;
				
		case 'menuFaqs':
			menuFaqsBt.className = 'float menuFaqsOver';
				break;
				
		case 'menuAboutUs':
			menuAboutUsBt.className = 'float menuAboutUsOver';
				break;
				
		case 'menuGetPlumbb':
			menuGetPlumbbBt.className = 'float menuGetPlumbbOver';
				break;
				
		case 'menuMyPlumbb':
			menuMyPlumbbBt.className = 'float menuMyPlumbbOver';
				break;
	}
		
	menuHomeBt.onmouseover = function()
	{
		if (actualPage != 'menuHome')
		{
			this.className = 'float menuHomeOver';
		}
	}
	
	menuHomeBt.onmouseout = function()
	{
		if (actualPage != 'menuHome')
		{
			this.className = 'float menuHome';
		}
	}
	
	menuHomeBt.onclick = function()
	{
		location.href = '/site/index.php';
	}
	
	menuWhyPlumbbBt.onmouseover = function()
	{
		if (actualPage != 'menuWhyPlumbb')
		{
			this.className = 'float menuWhyPlumbbOver';
		}
	}
	
	menuWhyPlumbbBt.onmouseout = function()
	{
		if (actualPage != 'menuWhyPlumbb')
		{
			this.className = 'float menuWhyPlumbb';
		}
	}
	
	menuWhyPlumbbBt.onclick = function()
	{
		location.href = '/site/whyplumbb.php';
	}
	
	menuFaqsBt.onmouseover = function()
	{
		if (actualPage != 'menuFaqs')
		{
			this.className = 'float menuFaqsOver';
		}
	}
	
	menuFaqsBt.onmouseout = function()
	{
		if (actualPage != 'menuFaqs')
		{
			this.className = 'float menuFaqs';
		}
	}
	
	menuFaqsBt.onclick = function()
	{
		location.href = '/site/faq.php';
	}
	
	menuAboutUsBt.onmouseover = function()
	{
		if (actualPage != 'menuAboutUs')
		{
			this.className = 'float menuAboutUsOver';
		}
	}
	
	menuAboutUsBt.onmouseout = function()
	{
		if (actualPage != 'menuAboutUs')
		{
			this.className = 'float menuAboutUs';
		}
	}
	
	menuAboutUsBt.onclick = function()
	{
		location.href = '/site/aboutus.php';
	}
	
	menuGetPlumbbBt.onmouseover = function()
	{
		if (actualPage != 'menuGetPlumbb')
		{
			this.className = 'float menuGetPlumbbOver';
		}
	}
	
	menuGetPlumbbBt.onmouseout = function()
	{
		if (actualPage != 'menuGetPlumbb')
		{
			this.className = 'float menuGetPlumbb';
		}
	}
	
	menuGetPlumbbBt.onclick = function()
	{
		location.href = '/site/getplumbb.php';
	}
	
	menuMyPlumbbBt.onmouseover = function()
	{
		if (actualPage != 'menuMyPlumbb')
		{
			this.className = 'float menuMyPlumbbOver';
		}
	}
	
	menuMyPlumbbBt.onmouseout = function()
	{
		if (actualPage != 'menuMyPlumbb')
		{
			this.className = 'float menuMyPlumbb';
		}
	}
	
	menuMyPlumbbBt.onclick = function()
	{
		location.href = '/site/backoffice/';
	}
}