/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2009 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 212 2009-09-03 05:33:44Z emartin24 $
 *
 */
/*
$(document).ready(function () {
	$('#basic-modal input.basic, #basic-modal a.basic').click(function (e) {
		e.preventDefault();
		$('#basic-modal-content').modal();
	});
});*/

$(document).ready(function() {
//code will wait for all the images to load before executing
//these load events can exist multiple times, unlike an onload event
	//e.preventDefault();
	//$("#basic-modal-content").modal({overlayClose:true});
	//$('#basic-modal-content').modal();

	//$("#basic-modal-content").modal({position: [200,100]});

});