$(document).ready(function(){
   $('div.photoGalleryPG a').lightBox();
   $('div.photoGalleryPG2 a').lightBox();
   

});

function showPG(next){
		
	$('div.photoGalleryPG:visible').hide();
	var newPG = 'photoPG00'+next;
	$('div.#'+newPG).show();
	//d.getElementById("currentPG").value = next;
	//return false;
		
}
function showPG2(next){
		
	$('div.photoGalleryPG2:visible').hide();
	var newPG = 'photoPG200'+next;
	$('div.#'+newPG).show();
	//d.getElementById("currentPG").value = next;
	//return false;
		
}

