// ZIEL visuelle Konzepte werben

$(function(){
// begin: OnLoad
  initstage();
// end: OnLoad
});


function initstage() {
  $("#stage").click(closestage);
}

function getstage(href) {
  jQuery.get(href, function(data) { showstage(data); }, "html");
}

function showstage(data) {
  $("#stage").fadeIn(0);
  $("#stageitem").html(data).fadeIn(1000);
}

function closestage() {
  $("#stageitem").fadeOut(500);
  $("#stage").fadeOut(500);
}

