// JavaScript Document
function switchLabel( strTitleLabel, strListLabel, strMoreLabel, 
					 intFocusId, intIdCount, strFocusCss, strBlurCss ) {
	for ( i=0; intIdCount>i; i++ ) {
		document.getElementById( strTitleLabel+i ).className = strBlurCss;
		document.getElementById( strListLabel+i ).style.display = "none";
	}
	document.getElementById( strTitleLabel+intFocusId ).className = strFocusCss;
	document.getElementById( strListLabel+intFocusId ).style.display = "block";

	if ( strMoreLabel != '' ) {
		for ( i=0; intIdCount>i; i++ ) {
			document.getElementById( strMoreLabel+i ).style.display = "none";
		}
		document.getElementById( strMoreLabel+intFocusId ).style.display = "block";
	}
}


var strTitleLabel, strListLabel, strMoreLabel, strFocusCss, strBlurCss, intIdCount;
function sl( intFocusId ) {
	for ( i=0; intIdCount>i; i++ ) {
		document.getElementById( strTitleLabel+i ).className = strBlurCss;
		document.getElementById( strListLabel+i ).style.display = "none";
	}
	document.getElementById( strTitleLabel+intFocusId ).className = strFocusCss;
	document.getElementById( strListLabel+intFocusId ).style.display = "block";

	if ( strMoreLabel != '' ) {
		for ( i=0; intIdCount>i; i++ ) {
			document.getElementById( strMoreLabel+i ).style.display = "none";
		}
		document.getElementById( strMoreLabel+intFocusId ).style.display = "block";
	}
}

