function rollover(current_event,id) {
	if (current_event.target) { // Firefox + Safari
		current_event.target.src = '/cgi-local/db_images/page_groups/uploads/'+id+'-front_on.gif';
	}
	else {						// IE
		current_event.srcElement.src = '/cgi-local/db_images/page_groups/uploads/'+id+'-front_on.gif';
	}
}

function rollout(current_event,id) {
	if (current_event.target) { // Firefox + Safari
		current_event.target.src = '/cgi-local/db_images/page_groups/uploads/'+id+'-front_off.gif';
	}
	else {
		current_event.srcElement.src = '/cgi-local/db_images/page_groups/uploads/'+id+'-front_off.gif';
	}
}
