$(document).ready(function() {
  $(".mid-inner-2").hide();
  $("#back-control").click(function(){
    $(".mid-inner-2").queue(function() {
      $(this).hide(200);
      $(this).dequeue();
    });
    $(".mid-inner-container").queue(function() {
      $(this).show(200);
      $(this).dequeue();
    });
    $("#loaded-title").html(" ");
    $("#loaded-content").html(" ");
  });

  $(".inner-box").click(function() {
    $(".mid-inner-container").queue(function() {
      $(this).hide(200);
      $(this).dequeue();
    });
    $(".mid-inner-2").queue(function() {
      $(this).show(200);
      $(this).dequeue();
    });
    $("#loading-message").show();

    var title = $(this).attr("title");
    var ids = $(this).attr("id").split("_");
    var geturl = "serve.php?id=" + ids[0] + "&tid=" + ids[1];
    $.get(geturl, function(data) {
      $("#loaded-title").html(title + "<br /><br />");
      $("#loaded-content").html(data);
      $("#loading-message").hide();
    });
  });
});
