/* REQUIRES JQUERY AND UI */
$(document).ready(function() {
	$('a.modal-warn').click(function(e) {
		e.preventDefault();
		var $link = this.href+(this.href.indexOf('?')>-1 ? '&' : '?')+'modal=1';
		if(!$('#warn-modal').length) {
			$('body').append(
				'<div id="warn-modal" title="You are now leaving...">You are about to visit a site that is not maintained by Harvest Ministries. We provide links to outside sites as a convenient means to access additional relevant or useful information. However, Harvest Ministries is not responsible for the content, accuracy, or opinions of these sites.<br /><div class="the_buttons"><a class="button"><b>Continue to website</b><span>&nbsp;</span></a><a class="cancel_dialog">Return to harvest.org</a></div></div>');
			$('#warn-modal').dialog({
				autoOpen: false,
				bgiframe: true,
				modal: true,
				draggable: false,
				resizable: false,
				width: 512
			 });
			 $('a.ui-dialog-titlebar-close').addClass('pngfix');
			$('#warn-modal a.cancel_dialog').click(function() {
				$('#warn-modal').dialog('close');
			});
		}
		$('#warn-modal').dialog('open');
		$('#warn-modal .button').click(function(e) {
			e.preventDefault();
			window.open($link);
			$('#warn-modal').dialog('close');
			$(this).unbind('click');
		});
	});
});