



/*
// <summary>
// Global array with elements consisting of image virtual paths
// </summary>
*/
var arImages = new Array();


/*
// <summary>
// Loads the images specified in the argument list of the funtion
// </summary>
*/    
function LoadImages ()
{

    // Local Variables  
    var temp = LoadImages.arguments; 

    // Begin

    for ( x = 0; x < temp.length; x++ )
    {

        arImages[x]     = new Image();
        arImages[x].src = temp[x];

    }// end for

}// end LoadImages