//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, gdzie){
var obj = eval('top.'+gdzie+'.document.images[\''+img+'\']');
obj.src = this.Items[img][1].src;
}

function img_Out(img, gdzie){
var obj = eval('top.'+gdzie+'.document.images[\''+img+'\']');
obj.src = this.Items[img][0].src;
}

//end_lib <!-- End External JavaScript -- DO NOT REMOVE THIS LINE -->
