$(document).ready(function() {
  if ($("a[rel='folder-open']").length == 1) {
    var ef_id = $("a[rel='folder-open']").attr("id").replace('folder_', '');

    showFolder();

    $("a[rel='folder-open']").bind("click", function() {
      showFolder();
    });
  }

  function showFolder() {
    var width = 788;
    var height = 650;

    $.window({
      src: '/folder-online/'+ ef_id + '/'+ width + '/' + height +'/',
      height: 660,
      width: 805,
      overflow: 'hidden',
      header: true,
      close: true
    });
  }
});
