// JavaScript Document

function homeover()
{
	// Expand the desired one
	document.getElementById('home').setAttribute('class', 'homeover');  // Mozilla version
	document.getElementById('home').setAttribute('className', 'homeover'); // IE version
}

function homeout()
{
	// Expand the desired one
	document.getElementById('home').setAttribute('class', 'homenorm');  // Mozilla version
	document.getElementById('home').setAttribute('className', 'homenorm'); // IE version
}

function bridalover()
{
	// Expand the desired one
	document.getElementById('bridal').setAttribute('class', 'bridalover');  // Mozilla version
	document.getElementById('bridal').setAttribute('className', 'bridalover'); // IE version
}

function bridalout()
{
	// Expand the desired one
	document.getElementById('bridal').setAttribute('class', 'bridalnorm');  // Mozilla version
	document.getElementById('bridal').setAttribute('className', 'bridalnorm'); // IE version
}

function venueover()
{
	// Expand the desired one
	document.getElementById('venue').setAttribute('class', 'venueover');  // Mozilla version
	document.getElementById('venue').setAttribute('className', 'venueover'); // IE version
}

function venueout()
{
	// Expand the desired one
	document.getElementById('venue').setAttribute('class', 'venuenorm');  // Mozilla version
	document.getElementById('venue').setAttribute('className', 'venuenorm'); // IE version
}

function contactover()
{
	// Expand the desired one
	document.getElementById('contact').setAttribute('class', 'contactover');  // Mozilla version
	document.getElementById('contact').setAttribute('className', 'contactover'); // IE version
}

function contactout()
{
	// Expand the desired one
	document.getElementById('contact').setAttribute('class', 'contactnorm');  // Mozilla version
	document.getElementById('contact').setAttribute('className', 'contactnorm'); // IE version
}
