/*
 * jquery.nyroModal-1.2.8.js
 * Config File
 * 2008/08/28
 */

var settings = {
  bgColor: '#000000', // Background color
  width: null, // default Width If null, will be calculate automatically
  height: null, // default Height If null, will be calculate automatically
  minWidth: 160, // Minimum width
  minHeight: 120, // Minimum height
  resizeable: true, // Indicate if the content is resizable. Will be set to false for swf
  autoSizable: true, // Indicate if the content is auto sizable. If not, the min size will be used
  padding: 20 // padding for the max modal size
};

var settings_yt = {
  width: 425, // default Width If null, will be calculate automatically
  height: 344 // default Height If null, will be calculate automatically
};

$(function() {
  $('a.ModalYT').nyroModal(settings_yt);
  $('a.Modal').nyroModal(settings);
});
