// JavaScript Document\<!-- Begin  Rollimage = new Array()  Rollimage[0]= new Image(180,250)  Rollimage[0].src = "hair.jpg"  Rollimage[1] = new Image(180,250)  Rollimage[1].src = "hair_hilight.jpg"  Rollimage[2]= new Image(180,250)  Rollimage[2].src = "pstoning.jpg"  Rollimage[3] = new Image(180,250)  Rollimage[3].src = "pstoning_hilight.jpg"  Rollimage[4]= new Image(180,250)  Rollimage[4].src = "eyeanglelibrary.jpg"  Rollimage[5] = new Image(180,250)  Rollimage[5].src = "eyeanglelibrary_hilight.jpg"  Rollimage[6]= new Image(180,250)  Rollimage[6].src = "lineweight.jpg"  Rollimage[7] = new Image(180,250)  Rollimage[7].src = "lineweight_hilight.jpg" function hair_normal(){    document.hair.src = Rollimage[0].src;    return true;  }    function hair_hilight(){    document.hair.src = Rollimage[1].src;    return true;  } function pstoning_normal(){    document.pstoning.src = Rollimage[2].src;    return true;  }    function pstoning_hilight(){    document.pstoning.src = Rollimage[3].src;    return true;  } function eyeanglelibrary_normal(){    document.eyeanglelibrary.src = Rollimage[4].src;    return true;  }    function eyeanglelibrary_hilight(){    document.eyeanglelibrary.src = Rollimage[5].src;    return true;  } function lineweight_normal(){    document.lineweight.src = Rollimage[6].src;    return true;  }    function lineweight_hilight(){    document.lineweight.src = Rollimage[7].src;    return true;  }//  End -->//-->
