function init()
{
	if (document.getElementById('effects') != null)
	{
		effects.filters(0).Apply();
		effects.style.visibility="visible";
		effects.filters(0).Play();
	}
}

function changeColor(theCell)
{

	theCell.children("a" + theCell.id.substr(2)).style.color="";
	theCell.children("a" + theCell.id.substr(2)).style.fontStyle=""
}

function changeBack(theCell)
{

	theCell.children("a" + theCell.id.substr(2)).style.color="";
	theCell.children("a" + theCell.id.substr(2)).style.fontStyle="";
}


function onCellWedding_Hover(theCell)
{
	weddings_menu.style.visibility = "visible";
	weddings_menu.style.display = "block";
	weddings_menu.style.posLeft= document.getElementById('tblEntirePage').offsetLeft + 447 ;
	weddings_menu.style.posTop = document.getElementById('tblEntirePage').offsetTop + 222 ;

}

function onCellWedding_Out(theCell)
{

	weddings_menu.style.visibility ="hidden";
	weddings_menu.style.display = "none";
}


function onSpanWeddings_Hover()
{
	weddings_menu.style.visibility ="visible";
	weddings_menu.style.display = "block";
}

function onSpanWeddings_Out()
{
	weddings_menu.style.visibility ="hidden";
	weddings_menu.style.display = "none";
}

function onCellServices_Hover(theCell)
{
	services_menu.style.visibility = "visible";
	services_menu.style.display = "block";
	services_menu.style.posLeft= document.getElementById('tblEntirePage').offsetLeft + 326 ;
	services_menu.style.posTop = document.getElementById('tblEntirePage').offsetTop + 222 ;

}

function onCellServices_Out(theCell)
{

	services_menu.style.visibility ="hidden";
	services_menu.style.display = "none";
}

function onSpanServices_Hover(theCell)
{
	services_menu.style.visibility ="visible";
	services_menu.style.display = "block";
}

function onSpanServices_Out(theCell)
{
	services_menu.style.visibility ="hidden";
	services_menu.style.display = "none";
}

