// IMAGE SWAP
function rollOver(imageName, over) 
{
	if(window.document.images) 
  	{
    	if (over)
      		window.document.images[imageName].src = "images/navigation/" + imageName + "_over.gif";
    	else
      		window.document.images[imageName].src = "images/navigation/" + imageName + ".gif";
  	}
}

function showDiv(strDivName)
{
	objElement = document.getElementById(strDivName).style;
	
	objElement.display = "block";
}

// Initialise the effects
	var drpHeader;
	var drpRequestCleaning;
	var drpOnlineShop;
	var drpAboutPurpleLabel;
	var drpServices;
	var drpRestoration;

	window.onload = function() 
	{
			drpHeader = new fx.Combo('header', {height: true, opacity: false, duration: 2000});
			drpRequestCleaning = new fx.Combo('one', {height: true, opacity: true, duration: 800});
			drpOnlineShop = new fx.Combo('two', {height: true, opacity: true, duration: 800});
			drpAboutPurpleLabel = new fx.Combo('three', {height: true, opacity: true, duration: 800});
			drpServices = new fx.Combo('four', {height: true, opacity: true, duration: 800});
			
			drpHeader.hide();
			drpRequestCleaning.hide();
			drpOnlineShop.hide();
			drpServices.hide();
			showDiv('three');
	}
