function cleanLink( href ) {
	href.splice( 0, 1 ); // remove the leading slash
	href.splice( href.length-1, 1 ); // remove the trailing slash
	if( href[0].length == 2 )
		href.splice( 0, 1 ); // remove the language code, if one exists
};

$(document).ready( function() {
	var parts = CURRENT_PATH.split( '/' );
	if( parts[0] == 'index' )
		return;
	if( parts[0] == 'strategy' ) {
		if( parts[1] == 'sectors' )
			$('#sectors').show();
		$('#sidebar a').each( function(i) {
			var href = $(this).attr('href').split('/');
			cleanLink( href );
			if( parts[1] == href[1] )
				$(this).addClass( 'selected' ); // we are the selected selection
			else
				$(this).append( '<img src="/images/more.gif" alt="" />' );
			if( href[1] == 'sectors' && href[2] != '' ) {
				if( parts.length > 2 && parts[2] == href[2] ) {
					$(this).removeClass( 'selected' );
					$(this).prepend( '<img src="/images/more.gif" alt="" />' );
				}
				else if( href.length > 2 ) {
					$(this).prepend( '<img src="/images/moreLit.gif" alt="" />' );
				}
			}
		} );
	}
	else {
		$('#sidebar a').each( function(i) {
			var href = $(this).attr('href').split('/');
			cleanLink( href );
			if( href.toString() == parts.toString() )
				$(this).addClass( 'selected' );
			else
				$(this).append( '<img src="/images/more.gif" alt="" />' );
		} );
	}
} );
