/**
 * Load the given file and set the text in the content.
 */
function loadSite(site)
{
  var content = $.ajax({
    url: site,
    success: function(html)
    {
      $("#content2").html(html);
      $("#content2").fadeIn(1000, function () {});
    }
  });
}

/**
 * Initializefunction. Load the start-site.
 */
function initSite()
{
  loadSite("content/Start.html");
}
