/* --- menu items --- */
var MENU_ITEMS0 = [
	['&nbsp;&nbsp;Home', 'index.html', {'oh' : imgHome, 'oo' : imgOut, 'sw' : 50}
	],
	['&nbsp;&nbsp;About us', 'about_us.html', {'oh' : imgAbout, 'oo' : imgOut, 'sw' : 65}
	],
	['&nbsp;&nbsp;Contact&nbsp;us', 'contact_us.html', {'oh' : imgContact, 'oo' : imgOut, 'sw' : 75}
	],
	['&nbsp;&nbsp;Service&nbsp;areas', 'property_management_service.html', {'oh' : imgService, 'oo' : imgOut, 'sw' : 93}
	],
	['&nbsp;&nbsp;Learn more', 'http://www.timcassidy.com', {'oh' : imgMore, 'oo' : imgOut, 'sw' : 80}
	]

];


function imgOut(s_id) {
	document.images['myImg'].src = 'img/r-blank.gif'
}
function imgHome(s_id) {
	document.images['myImg'].src = 'img/r-home.gif'
}
function imgAbout(s_id) {
	document.images['myImg'].src = 'img/r-about.gif'
}
function imgContact(s_id) {
	document.images['myImg'].src = 'img/r-contact.gif'
}
function imgService(s_id) {
	document.images['myImg'].src = 'img/r-service.gif'
}
function imgMore(s_id) {
	document.images['myImg'].src = 'img/r-more.gif'
}
