// JavaScript Document

Image1 = new Image(178,142)
Image1.src = "/sites/all/themes/aitheme/images/map/IRE-provinces.gif"

Image2 = new Image(178,142)
Image2.src = "/sites/all/themes/aitheme/images/map/IRE-provinces-ULSTER.gif"

Image3 = new Image(178,142)
Image3.src = "/sites/all/themes/aitheme/images/map/IRE-provinces-LEINSTER.gif"

Image4 = new Image(178,142)
Image4.src = "/sites/all/themes/aitheme/images/map/IRE-provinces-MUNSTER.gif"

Image5 = new Image(178,142)
Image5.src = "/sites/all/themes/aitheme/images/map/IRE-provinces-CONNACHT.gif"



function CONNACHT() {
document.provinces.src = Image5.src; return true;
}

function MUNSTER() {
document.provinces.src = Image4.src; return true;
}

function LEINSTER() {
document.provinces.src = Image3.src; return true;
}

function ULSTER() {
document.provinces.src = Image2.src; return true;
}

function original() {
document.provinces.src = Image1.src; return true;
}


