/*

 * 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 236 2010-03-09 06:04:40Z emartin24 $

 *

 */



jQuery(function ($) {

	$('.basic-modal a.basic').click(function (e) {
		var ourcontent = '#' + this.id + '-content';
		if (e.preventDefault){e.preventDefault(); }else{e.returnValue = false;}
		$(ourcontent).modal();
	});
	
	$('.basic-modal input.basic').click(function (e) {
		var ourcontent = '#' + this.id + '-content';
		if (e.preventDefault){e.preventDefault(); }else{e.returnValue = false;}
		$(ourcontent).modal();
	});

});
