var __content = null;



$(document).ready( function() {
	__content = new Array();

	__content[ 'wealthy' ] = {

		title: 'What The Wealthy Buy On Payday',
		fn: function( id ) {
			$('#' + id).html( '<iframe class="movie" src="http://cde.explorefreedom.com/en/start.cfm?CID=18068&MLID=76346"></iframe>' );
		}
	}

	__content[ 'brilliant' ] = {

		title: 'Brilliant Compensation',
		fn: function( id ) {
			$('#' + id).html( '<iframe class="movie" src="http://cde.explorefreedom.com/en/start.cfm?CID=18068&MLID=76345"></iframe>' );
		}
	}
});

function closeDialog() {
	$('#dialog').dialog( "close" );
}

function dialog( key )
{
	var fn = __content[ key ].fn;
	var title = __content[ key ].title;

	if( fn ) {
		fn( 'dialogContent' );
	}

	$('#dialog').dialog({

		autoOpen: true,
		draggable: true,
		modal: true,
		position: 'center',
		resizable: false,

		title: title,
		
		width: '700px',
		height: '565px',

		overlay: {
			'background-color': '#000000',
			'opacity': 0.7 
		},

		open: function() {
			$('#benefitsFrame_content').hide();
		},

		close: function() {
			$('#benefitsFrame_content').show();
			$('#dialogContent').empty();
		}
		

	});
	

}


