

var timer1;
var textB = new Array();
textB = ['<a href = "international.html" style = "text-decoration:none;"><img title="New-Zealand" src="images/New-Zealand-icon.png" border = "0"/></a>',
         '<a href = "international.html" style = "text-decoration:none"><img title="Canada" src="images/Canada-icon.png"  border = "0" /></a>',
         '<a href = "international.html" style = "text-decoration:none"><img title="European-Union" src="images/European-Union-icon.png"  border = "0" /></a>',
         '<a href = "international.html" style = "text-decoration:none"><img title="United-Kingdom" src="images/United-Kingdo-icon.png"  border = "0" /></a>',
	'<a href = "international.html" style = "text-decoration:none"><img title="Australia" src="images/Australia-icon.png" border = "0" /></a>',
         '<a href = "international.html" style = "text-decoration:none"><img title="United-States-of-America" src="images/United-States-of-Americ-icon.png"  border = "0" /></a>',
         '<a href = "international.html" style = "text-decoration:none"><img  title = "Ireland" src="images/Ireland-icon.png"  border = "0" /></a>'];
         
var currText1 = 0;

function changeImage() {
    currText1 = currText1 + 1;
    if(currText1 > textB.length-1)
    {
	currText1 = 0;
    }
    document.getElementById("currimageContainer").innerHTML = textB[currText1];
}





function setText(num) {
    currText1 = num;
    document.getElementById("currimageContainer").innerHTML = textB[num];
}


