var current_color = '#ffffff';
var current_fontWeight = 'bold';
var current_textDecoration = 'none';
var current_backgroundColor = '#3860a0';

var defaultpages = ['index.html','index.htm','index.php','index.asp','default.htm'];

var anchors = document.getElementsByTagName('a');
var nowurl  = location.href.split('?');

for (i in anchors) {
    var anchor = anchors[i];
    var anchor_href = anchor.href;
    if (anchor.className == 'current' && anchor_href != undefined) {
        anchor_href = anchor_href.split('?');
		var is_current = 0;
		for (j in defaultpages) {
			var defaultpage = defaultpages[j];
			var tmp = nowurl[0]+defaultpage;
			if (anchor_href[0] == tmp) {
				is_current = 1;
			}
		}
        if (anchor_href[0] == nowurl[0]) {
			is_current = 1;
		}
		if (is_current) {
            anchor.style.color = current_color;
            anchor.style.fontWeight = current_fontWeight;
            anchor.style.textDecoration = current_textDecoration;
			anchor.style.backgroundColor = current_backgroundColor;
            //anchor.href = '#';
        }
    }
}

