
// MENU MOUSEOVER EFFECT

function MenuHover(objRow, mouseState) {

    if (mouseState == 'on') { 
        newClass = 'RowHover';
    }
	
	else if (mouseState == 'off') {
	    newClass = 'RowDefault';
	}
	
	objRow.className = newClass;

}

// TOGGLE OBJECT DISPLAY

function DisplayLyrics(numTracks, theAlbum, theTrack) {

	for (var count = 0; count <= numTracks; count++) {

		var thisTrack = theAlbum + count;
	
		if (count == theTrack) {

			document.getElementById(thisTrack).style.display = '';

		}

		else {

			document.getElementById(thisTrack).style.display = 'none';

		}

	}

    var objDiv = document.getElementById('divLyrics');
    
    objDiv.scrollTop = 0;

}