// JavaScript Document//rollover de les imatges de la home
loadImg = function () { 
	
	image1 = new Image(125,233);
	image1.src = "img/hm_cvr.jpg"
	image2 = new Image(125,233);
	image2.src = "img/hm_car.jpg"
	image3 = new Image(125,233);
	image3.src = "img/hm_tmr.jpg"

	array_img = new Array();
	array_img[1] = "img/hm_cv.jpg"
	array_img[2] = "img/hm_ca.jpg"
	array_img[3] = "img/hm_tm.jpg"

	for(i=1;i<=3;i++) { 
			btag('h_img'+i).nom = i
			btag('h_img'+i).onmouseover = function () { this.src =array_img[this.nom]; this.oldi = this.src ; this.src = eval('image'+this.nom).src ;  }
			btag('h_img'+i).onmouseout = function () { this.src = this.oldi ; }
		}
}

addLoadEvent(loadImg);