function stickerLink ()
{
	document.getElementById('sticker').onclick = function () { window.location.href = 'register_your_interest.php'; }
}
fc_registerOnLoad ( new Array(stickerLink, null) );

/* ---------------------------------------------------- */

function fc_initDropDownMenusState ()
{
	var currentPage = document.URL;
	currentPage = currentPage.split('/');
	currentPage = currentPage[currentPage.length-1];
	
	if ( (currentPage.indexOf('.html') == -1) && (currentPage.indexOf('.php') == -1) )
		currentPage = "index.html";
	
	//currentPage = currentPage.split('.')[0];	
	
	var menuList = document.getElementById("rightMenuContainer");
	menuList = menuList.getElementsByTagName('a');
	
	for (var i = 0; i < menuList.length; i++)
	{
		var linkTarget = menuList[i].href;
		if (linkTarget.indexOf(currentPage) != -1)
		{
			if (menuList[i].parentNode.parentNode.parentNode.id == "rightMenuContainer")
			{
				// - main menu
				var subMenu = menuList[i].parentNode.getElementsByTagName('ul');							
				if (subMenu.length > 0)
				{
				// has subMenu
					subMenu[0].style.display = "block";
				}
				menuList[i].parentNode.style.backgroundImage = "url(./images/Sitebuild/contentHeadRight_active.gif)";
				//menuList[i].style.color= "#000000";
				menuList[i].parentNode.style.backgroundImage = "url(./images/Sitebuild/navBtnGrey.gif)";
			}else{
				// - sub menu
				var subMenu = menuList[i].parentNode.parentNode;
				subMenu.style.display = "block";
				menuList[i].parentNode.style.backgroundImage = "none";
			}	
			menuList[i].style.fontWeight = "bolder";
			menuList[i].parentNode.setAttribute('id', 'activeLink');
		}
	}
}

/* ---------------------------------------------------- */

fc_registerOnLoad ( new Array(fc_initDropDownMenusState, null) );
/* ---------------------------------------------------- 

function fc_initDropDownMenusState ()
{
	var currentPage = document.URL;
	currentPage = currentPage.split('/');
	currentPage = currentPage[currentPage.length-1];
	
	if ( (currentPage.indexOf('.html') == -1) && (currentPage.indexOf('.php') == -1) )
		currentPage = "index.html";
	
	//currentPage = currentPage.split('.')[0];	
	
	var menuList = document.getElementById("rightMenuContainer");
	menuList = menuList.getElementsByTagName('a');
	
	for (var i = 0; i < menuList.length; i++)
	{
		var linkTarget = menuList[i].href;
		if (linkTarget.indexOf(currentPage) != -1)
		{
			if (menuList[i].parentNode.parentNode.parentNode.id == "rightMenuContainer")
			{
				// - main menu
				var subMenu = menuList[i].parentNode.getElementsByTagName('ul');							
				//if (subMenu.length > 0)
				//{
					// has sub menu
				//	subMenu[0].style.display = "block";
				//}
				//menuList[i].parentNode.style.backgroundImage = "url(./images/Sitebuild/contentHeadRight_active.gif)";
				//menuList[i].style.color= "#000000";
			//}else{
				// - sub menu
				var subMenu = menuList[i].parentNode.parentNode;
				subMenu.style.display = "block";
			}	
			menuList[i].style.fontWeight = "bolder";
			menuList[i].parentNode.style.backgroundImage = "url(./images/Sitebuild/navBtnGrey.gif)";
		}
	}
}
*/


