$(document).ready(function(){
	var path = location.href.substring(location.href.lastIndexOf('/') + 1);
	if ( path == '' ) path = 'index.html';
	path = '/' + path;
	if ( path ) {
		$('#nav a[@href*=' + path + ']').parent().attr('class', 'selected');
		$('#nav a[@href*=' + path + ']').parent().prepend($('#nav a[@href*=' + path + ']').text());
		$('#nav a[@href*=' + path + ']').remove();

		$('.tabs a[@href*=' + path + ']').parent().attr('class', 'selected');
		$('.tabs a[@href*=' + path + ']').parent().prepend($('.tabs a[@href*=' + path + ']').text());
		$('.tabs a[@href*=' + path + ']').remove();
	}	

});