// PG Menu Functions

function menuMouseOver(oButton,bHome) {
	if (bHome) oButton.style.background='#008800';
	else oButton.style.background='#e3cc02';
	oButton.style.cursor='pointer';
}

function menuMouseOut(oButton,bHome) {
	if (bHome) oButton.style.background='#006600';
	else oButton.style.background='#fce102';
}
