
function showit(what) {
	document.getElementById("info"+what).style.display = "block";
}

function hideit(what) {
	document.getElementById("info"+what).style.display = "none";
}

/* ++++++++++++++++++++++++++++++++++++++++++++
           lightbox 
++++++++++++++++++++++++++++++++++++++++++++ */


$(function() {
   $('a[rel*=lightbox]').lightBox({
	overlayBgColor: '#000',
	overlayOpacity: 0.7,
	imageLoading: '/img/lightbox/loading.gif',
	imageBtnClose: '/img/lightbox/closelabel.gif',
	imageBtnPrev: '/img/lightbox/prevlabel.gif',
	imageBtnNext: '/img/lightbox/nextlabel.gif',
	containerResizeSpeed: 900,
	txtImage: 'Image',
	txtOf: 'of'
   });
});


function landusechange(which) {
if ($("#" + which + "1").is(":visible")) {
	$("#" + which + "1").fadeOut(2000);
	$("#" + which + "2").fadeIn(2000);
}
else {
	$("#" + which + "2").fadeOut(2000);
	$("#" + which + "1").fadeIn(2000);
}

}
