// External javascript file for http://www.filao.org
// Written by: Elshad Kassim Shadoobuccus

var partyText = '<p><strong>filao PARTY</strong> is commited to bringing the best in entertainment and catering services to the UK and beyond.</p>';
var techText = '<p><strong>filao .TECH</strong> offers a complete I.T. service, ranging from multi-tier software solutions to high-quality hardware upgrades.</p>';
var outText = '&nbsp;';

function changeOpacity(elementName, type)
{
	if (type == 'over')
	{
	  var opacity = 1.0;
	  elementName.style.opacity = opacity;
	  elementName.style.MozOpacity = opacity;
	  elementName.style.KhtmlOpacity = opacity;
	  elementName.filters.alpha.opacity = (opacity * 100);
	}
	else if (type == 'out')
	{
	  var opacity = 0.5;
	  elementName.style.opacity = opacity;
	  elementName.style.MozOpacity = opacity;
	  elementName.style.KhtmlOpacity = opacity;
	  elementName.filters.alpha.opacity = (opacity * 100);
	}
}

function changeDescriptionText(elementName, type)
{
    if (type == 'party')
	{
	  document.getElementById(elementName).innerHTML = partyText;
	}
	else if (type == 'tech')
	{
	  document.getElementById(elementName).innerHTML = techText;
	}
	else if (type == 'out')
	{
	  document.getElementById(elementName).innerHTML = outText;
	}
}