//begin_lib <!-- Begin External JavaScript -- DO NOT REMOVE THIS LINE -->

function jsRollOver(){
this.Items = new Array();
this.SetImg = img_Set;
this.Over = img_Over;
this.Out = img_Out;
}

function img_Set(img,src1,src2){
this.Items[img]=new Array();
this.Items[img][0]=new Image();
this.Items[img][0].src = src1;
this.Items[img][1]=new Image();
this.Items[img][1].src=src2;
}

function img_Over(img){
document.images[img].src = this.Items[img][1].src;
}

function img_Out(img){
document.images[img].src = this.Items[img][0].src;
}

//end_lib <!-- End External JavaScript -- DO NOT REMOVE THIS LINE -->
