Stroke the squares

<SCRIPT>

var colorArray = new Array("red", "yellow", "green", "purple", "orange", "blue");

function swapImage(imageName) {
     var Index = Math.round((colorArray.length - 1) * Math.random());
     document[imageName].
src = "images/" + colorArray[Index] + ".gif";
}

</SCRIPT>

<BODY>

Stroke the squares

<A HREF="javascript:void("")" onMouseOver="swapImage('one');">
    <IMG SRC="images/red.gif" NAME="one">
<
/A>

<A HREF="javascript:void("")" onMouseOver="swapImage('two');">
    <
IMG SRC="images/green.gif" NAME="two">
<
/A>

<A HREF="javascript:void("")" onMouseOver="swapImage('three');">
   <
IMG SRC="images/blue.gif" NAME="three">
<
/A>

<A HREF="javascript:void("")" onMouseOver="swapImage('four');">
    <
IMG SRC="images/yellow.gif" NAME="four">
<
/A>

<A HREF="javascript:void("")" onMouseOver="swapImage('five');">
    <
IMG SRC="images/orange.gif" NAME="five">
<
/A>

<A HREF="javascript:void("")" onMouseOver="swapImage('six');">
    <
IMG SRC="images/purple.gif" NAME="six">
<
/A>