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(85,14,"ealain_06B");//0
createSwap(85,14,"ealain_07B");//1
createSwap(85,14,"ealain_08B");//2
createSwap(85,14,"ealain_09B");//3
createSwap(85,14,"ealain_10B");//4
createSwap(85,14,"ealain_11B");//5
createSwap(237,18,"ealain_21");//6
createSwap(237,18,"subnav_02");//7
createSwap(85,12,"subnav_03B");//8
createSwap(237,18,"subnav_04b");//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_15b");//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



