function switchImage(url,from) {
  from.src = url;
  return true;
}

function getPage(pid,param,param2,param3) {
  $.get("system/php/pagefile.php", {
       page: pid + "." + param
  }, function(data) {
          $("#pageContent").fadeOut("fast", function() {
                   document.getElementById("pageContent").innerHTML = data;
                   window.scrollTo(0,0);
                   $("#pageContent").fadeIn("slow");
          });
  });
}
