﻿
function hideAll()
{
	document.getElementById('sessions').style.display = 'none';
	document.getElementById('weddings').style.display = 'none';
	document.getElementById('specials').style.display = 'none';
}

function displaySessionsPricingList()
{
	hideAll();
	document.getElementById('sessions').style.display = 'block';
}

function displayWeddingsPricingList()
{
	hideAll();
	document.getElementById('weddings').style.display = 'block';
}

function displaySpecialsPricingList()
{
	hideAll();
	document.getElementById('specials').style.display = 'block';
}
