function insert_version_links() {
var labels = ['dev', '0.4', '0.3'];
document.write('
\n');
for (i = 0; i < labels.length; i++){
document.write('- ');
if (typeof(DOCUMENTATION_OPTIONS) !== 'undefined') {
if ((DOCUMENTATION_OPTIONS['VERSION'] == labels[i]) ||
(DOCUMENTATION_OPTIONS['VERSION'].match(/dev$/) && (i == 0))) {
document.write('▸ ');
}
}
document.write('skimage VERSION
\n'
.replace('VERSION', labels[i])
.replace('URL', 'http://scikits-image.org/docs/' + labels[i]));
}
document.write('
\n');
}