function rollText(projectName)          // Rollover text for movie icons{    var newText = "";                   // Set the variable for what the new text will be    var labelDiv = document.getElementById( "projectLabel" );   // Get the target DIV tag      if( projectName == 'out' )     {          newText = document.createTextNode(" ");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }         if( projectName == 'mask' )          // If Beneath the Mask....     {          newText = document.createTextNode("Beneath the Mask (Project on Hold)");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }        if( projectName == 'illusionist' )     {          newText = document.createTextNode("The Traveller Thread (coming soon...)");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }        if( projectName == 'dmMovie' )     {          newText = document.createTextNode("Dragonmount: The Movie");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }        if( projectName == 'pod' )     {          newText = document.createTextNode("Pod Commuting");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }        if( projectName == 'reflections' )     {          newText = document.createTextNode("Reflections of the Mirror");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }        if( projectName == 'nightingales' )     {          newText = document.createTextNode("The Singing Nightingales");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }    if( projectName == 'antr' )     {          newText = document.createTextNode("A Night to Remember");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }    if( projectName == 'mw' )     {          newText = document.createTextNode("The Music Within");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }    if( projectName == 'rtc' )     {          newText = document.createTextNode("Reasons To Celebrate");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }    }
