var date=new Date();
var x=date.getMonth(); date.setMonth(x+2); date=date.toGMTString();


function rollOver1(imgID,state) {
	imgSrc='images/'+imgID+state+'.gif';
	document.images[imgID].src=imgSrc;
}

function rollOver2(imgID,state) {
	imgSrc='../images/'+imgID+state+'.gif';
	document.images[imgID].src=imgSrc;
}

function chgLang(from,to) {
	document.getElementById(from).style.visibility="hidden";
	document.getElementById(to).style.visibility="visible";
}

function swapLang(from,to) {
	newloc=location.href.replace("\/"+from+"\/","\/"+to+"\/");
	location.href=newloc;
}

function galleryImg() {
	var imgNo=Math.floor(Math.random()*10);
	document.getElementById("galleryImage").src='images/gallery'+imgNo+'.jpg';
}



