/**
 * @copyright  Copyright(c) 2005, IC Zones
 * @author     Michael Jolin
 * @since      2005,08,01
 * @package		JS
 *
 * @update		Michael Jolin -> 2006,02,27
**/

function selectActivePage() {
	if( parent && parent != window ) {
		if( parent.location.search ) {
			var page = parent.location.search.substr( 1 );
			var text;
	
			if( location.href.indexOf( page ) == -1 ) {
				text = page.replace( /_/g, ' ' );
				text = text.replace( /-/g, '&' );
	
				if( document.body.innerHTML.indexOf( text ) > -1 ) {
					location.href = page + '.shtml';
				}
			}
		}
	} else {
		var page = location.pathname.substr( 1, location.pathname.length - 7 );
		location.href = '/Values_and_breakthrough.shtml?' + page;
	}

	var elms = html.getElementsByClass( '', $( 'leftBox' ), 'li' );
	var elm;

	for( var i in elms ) {
		if( elms[i].childNodes && elms[i].className != 'sep' ) {
			if( checkIt( 'msie' ) ) {
				elm = elms[i].childNodes[0].childNodes[0];
				if( elm.nodeName == 'BR' ) {
					elm = elms[i].childNodes[0].childNodes[1];
				}
			} else {
				elm = elms[i].childNodes[1].childNodes[1];
				if( elm.nodeName == 'BR' ) {
					elm = elms[i].childNodes[1].childNodes[3];
				}
			}
			if( elm.href == location.href ) {
				elm.className = 'menuLiSelect';
			}
		}
	}
}


