//-->
// Manually coded Function to control the ...
// Copyright 2005 Chris Luckcuck
function MenuRolloverEffect(obj) {
		obj.style.backgroundColor='#EEEFF7';
		obj.style.cursor='hand';
}
function IBoverEffect(obj) {
		obj.style.backgroundColor='#7081F5';
		obj.style.cursor='hand';
}
function MenuRolloutEffect(obj) {
		obj.style.backgroundColor='';
}
//-->