var total = 0;
var graphic = new Array();

function rollovergrap(width, height, name) {
	if (document.images){
		this.name = name;
		this.width = width;
		this.height = height;
		this.off = new Image(width,height);
		this.off.src = "../images/"+name+".gif";
		this.on = new Image(width,height);
		this.on.src = "../images/"+name+"R.gif";
	}
}

function createSwap(width,height,name) {
	if (document.images){
		graphic[total] = new rollovergrap(width,height,name);
		total++;
	}
}

function swap(name,num) {
	if (document.images){
		document.images[name].src = graphic[num].on.src;
	}
}

function undoswap(name,num) {
	if (document.images){
		document.images[name].src = graphic[num].off.src;
	}
}
createSwap(37,14,"ealain_06");//0
createSwap(88,14,"ealain_07");//1
createSwap(57,14,"ealain_08");//2
createSwap(84,14,"ealain_09");//3
createSwap(95,14,"ealain_10");//4
createSwap(61,14,"ealain_11");//5
createSwap(237,18,"ealain_21");//6
createSwap(237,18,"subnav_02");//7
createSwap(237,18,"subnav_03");//8
createSwap(237,18,"subnav_04");//9
createSwap(237,18,"subnav_05");//10
createSwap(237,18,"subnav_06");//11
createSwap(237,18,"subnav_07");//12
createSwap(237,18,"subnav_08");//13
createSwap(237,18,"subnav_09");//14
createSwap(237,18,"subnav_10");//15
createSwap(237,18,"subnav_11");//16
createSwap(237,18,"subnav_12");//17
createSwap(237,18,"subnav_13");//18
createSwap(237,18,"subnav_14");//19
createSwap(237,18,"subnav_15");//20
createSwap(237,18,"subnav_16");//21
createSwap(237,18,"subnav_17");//22
createSwap(237,18,"subnav_18");//23
createSwap(237,18,"subnav_19");//24
createSwap(237,18,"subnav_20");//25
createSwap(237,18,"subnav_21");//26
createSwap(237,18,"subnav_22");//27
createSwap(237,18,"subnav_23");//28
createSwap(82,24,"cuardaigh");//29
createSwap(101,24,"liosta");//30
createSwap(237,18,"subnav_25");//31
createSwap(237,18,"subnav_26");//32
createSwap(237,18,"home1");//33
createSwap(237,18,"subnav_template_26");//33
createSwap(237,18,"subnav_30");//33


