﻿// jQuery Initialization for plugins
$(document).ready(function () {
  // Initialize the ceebox plugin
  $('#Container .bottom .recent-works').ceebox();

  // view email to friend form
  $("#Container a.edit-content").live("click", function(e) {
      e.preventDefault();
      var content = '<div style="padding:20px;"><iframe src="' + $(this).attr('href') + '" style="width:700px; height:500px;" scrolling="no" frameborder="0" /></div>';
      ShowPopup(content, { width: 740, height: 540 });
  });
  
  // Call ceebox plugin
  function ShowPopup(content, options) {
      $.fn.ceebox.overlay();
      $.fn.ceebox.popup(content, options);
      return false;
  }

  // CeeBox extensions for postback functionality
  $("#cee_overlay").live("click", function() { $.fn.ceebox.closebox(); });
  $("#cee_closeBtn").live("click", function() { $.fn.ceebox.closebox(); });
});
