function toggle_image(image) {
	var path = image.src;
	if (path.indexOf('_off') > -1) {
		image.src = path.substring(0, path.indexOf('_off')) + '_on';
	} else {
		image.src = path.substring(0, path.indexOf('_on')) + '_off';
	}
}
