function menuOver( o) {
	if (o.className.indexOf( 'selected') >= 0) {
		return( true);
	}
	o.firstChild.firstChild.src = '/img2/menu_'+o.getAttribute( 'rel')+'_over.png';
}
function menuOut( o) {
	if (o.className.indexOf( 'selected') >= 0) {
		return( true);
	}
	o.firstChild.firstChild.src = '/img2/menu_'+o.getAttribute( 'rel')+'.png';
}
$(document).ready( function() { $('a.linkOut').each( function() { $(this).click( function() { window.open( this.href); return( false);}); }) });
