var thepage="";
function refreshContent(targetElement, thepage, effect) {
  $(targetElement).fadeOut("slow", function(){
    $(targetElement).load(thepage,false, function() {
      $(targetElement).fadeIn("slow");
    });
  })
  applyEffects(effect);
  return false;
}


function applyEffects(whichEffect) {
	if (whichEffect == "null") {
	}
	else if (whichEffect == "currentShow-Images") {
		//alert("you better see this!");
		$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
		$('#imageList').jScrollPane();
	}

}

