$(function() {
  
  /* Generic */
  
  function newModalContact(){
      new Boxy.load("content/contact.html", {
        title: "Contact Us",
        modal: true, behaviours: function(c) {
          c.find('a:first').click(function() {
            newModal();
          });
        }
      });
  };
  
  /* Artist */
  
  function newModalArtist(){
      new Boxy.load("content/artist_zone.html", {
        title: "Artist's Zone",
        modal: true, behaviours: function(c) {
          c.find('a:first').click(function() {
            newModal();
          });
        }
      });
  };
  
  /* Corporate */
  
  function newModalCorporate(){
    
      new Boxy.load("content/corporate_zone.html", {
        title: "Corporate Zone",
        modal: true, behaviours: function(c) {
          c.find('a:first').click(function() {
            newModal();
          });
        }
      });
  };
  
  /* Media */
  
  function newModalMedia(){
      new Boxy.load("content/media_zone.html", {
        title: "Media Zone",
        modal: true, behaviours: function(c) {
          c.find('a:first').click(function() {
            newModal();
          });
        }
      });
  };
  
  /* EVENTS */

  $('#public').click(newModalArtist);
  $('#corporate').click(newModalCorporate);
  $('#media').click(newModalMedia);
  $('#navlink_contact').click(newModalContact);
  
});