/**
 * @author nbeighley
 */
jQuery(document).ready( function(){
	jQuery("#playVideo").click(function(){
		$("#showVideo").load('http://www.drc1000.com/full_video/index.html').dialog({
			bgiframe: true,
			autoOpen: true,
			position: 'center',
			title: 'DRC1000 Demonstration Video',
			width: 500,
			height: 510,
			modal: true,
			buttons: {
				'Close Window': function() {
					$(this).dialog("destroy"),
					$(this).dialog("close");
					
				}
			},
			close: function() {
				$(this).dialog("destroy"),
				$("#showVideo").dialog("close");
			}
		});
	});
});
