function toggleDiv(id)
{
	hideDivs();
	Effect.Appear(id);
}

function hideDivs()
{
	Element.hide('photographers');
	Element.hide('alterations');
	Element.hide('misc');
	Element.hide('florists');
	Element.hide('videographers');
	Element.hide('weddinglocations');
	Element.hide('djs');
	
}