/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 254 2010-07-23 05:14:44Z emartin24 $
 */

jQuery(function ($) {
	// Load dialog on page load
	//$('#basic-modal-content').modal();

	// Load dialog on click
	$('#basic-modal .basic').click(function (e) {
		
		//$('#basic-modal-content').modal();
		
		
		var src = "http://jbsystemsllc.com/popVideo.php";
		$.modal('<div class=\'#basic-modal-content\'><iframe src="' + src + '" height="475" width="830" style="border:none; background-color:#000000;">', {
					closeHTML:"",
			containerCss:{
				backgroundColor:"#000",
				borderColor:"#fff",
				height:500,
				padding:0,
				width:840
			},
			overlayClose:true
		});



		/*var src = "http://jbsystemsllc.com/modals/video-player.php?videoID=1";
		$.post(src, {}, function(data) {
		alert(data);
			$.modal('<div class="basic-modal-content">'+data+'</div>', {
				closeHTML:"",
				containerCss:{
					backgroundColor:"#000",
					borderColor:"#fff",
					height:500,
					padding:0,
					width:840
				},
				overlayClose:true
			});
		});*/

		return false;
	});
});
