$(function() {
		$.nyroModalSettings({
			bgColor: '#000',
			windowResize: true,
			resizable: true,
			width: 800, // default Width If null, will be calculate automatically
  			height: 500, // default Height If null, will be calculate automatically
 			minWidth: 800, // Minimum width
  			minHeight: 500, // Minimum height
  			
			cssOpt: { // Default CSS option for the nyroModal Div. Some will be overwritten or updated when using IE6
    bg: {
      position: 'absolute',
      overflow: 'hidden',
      top: 0,
      left: 0,
      height: '100%',
      width: '100%'
    },
    wrapper: {
      position: 'absolute',
      top: '50%',
      left: '50%'
    },
    wrapper2: {
    },
    content: {
    },
    loading: {
      position: 'absolute',
      top: '50%',
      left: '50%',
      marginTop: '-50px',
      marginLeft: '-50px'
    }
  }
			
			
		});
	
	
	});


