// JavaScript Document

/* var arrImages = new Array(6);
arrImages[0] = "../Images/home-praga-1.jpg";
arrImages[1] = "../Images/home-praga-2.jpg";
arrImages[2] = "../Images/home-praga-3.jpg";
arrImages[3] = "../Images/home-praga-4.jpg";
arrImages[4] = "../Images/home-praga-5.jpg";
arrImages[5] = "../Images/home-praga-6.jpg";

function changeImage(imgIndex)  {
	document['imgMain'].src = arrImages[imgIndex];
	//alert(arrImages[imgIndex])
	}
	
*/
function SimpleSwap(el,which){
        el.src= el.getAttribute(which||"oversrc");
}

function SimpleSwapRestore(el,which){
        el.src= el.getAttribute(which||"origsrc");
}