/* 
Javascript for Sudzl.com
Author: Greg Roe
Last Update: 2008 May 27
*/

function menuOver(obj) {
	obj.style.top = '-92' + 'px';
}

function menuClick(obj) {
	obj.style.top = '-46' + 'px';
}

function menuOut(obj) {
	obj.style.top = '0' + 'px';
}

