// JavaScript Document
<!--
document.write('<ul>');

var str = document.title; // Get webage title
if (str.indexOf('Press Releases')>=0) { // if title equal to value
	document.write('<li><a href="/media-centre/press-releases/en/index.html" class="selected">Press Releases</a>'); // Highlight option
} else {
	document.write('<li><a href="/media-centre/press-releases/en/index.html">Press Releases</a>'); // Normal option
}

if (str.indexOf('Reports')>=0) { // if title equal to value
	document.write('<li><a href="/media-centre/reports/en/index.html" class="selected">Reports</a>'); // Highlight option
} else {
	document.write('<li><a href="/media-centre/reports/en/index.html">Reports</a>'); // Normal option
}


if (str.indexOf('Financial Results')>=0) { // if title equal to value
	document.write('<li><a href="/media-centre/financial-results/en/index.html" class="selected">Financial Results</a>'); // Highlight option
} else {
	document.write('<li><a href="/media-centre/financial-results/en/index.html">Financial Results</a>'); // Normal option
}

if (str.indexOf('Seeing is Believing')>=0) { // if title equal to value
	document.write('<li><a href="/media-centre/seeing-is-believing/en/index.html" class="selected">Seeing is Believing</a>'); // Highlight option
} else {
	document.write('<li><a href="/media-centre/seeing-is-believing/en/index.html">Seeing is Believing</a>'); // Normal option
}


if (str.indexOf('Photos')>=0) { // if title equal to value
	document.write('<li><a href="/media-centre/photos/en/index.html" class="selected">Photos</a>'); // Highlight option
} else {
	document.write('<li><a href="/media-centre/photos/en/index.html">Photos</a>'); // Normal option
}


document.write('</li>');
document.write('</ul>');

