/*
 * 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, div.basicpop a.basic').click(function (e) {
		e.preventDefault();
		$('#basic-modal-content').modal();
	});
	
	$('a.popit').click(function () {
		$('#already').show(1500);
		$('#signupForm').hide(1000);
	});
	
	$('p.produce').click(function (e) {
		e.preventDefault();
		var src = "https://www.myorganicacres.com/produce.php";
			$.modal('<iframe src="' + src + '" height="450" width="830" border="0" style="border:0">', {
				closeHTML:"",
				containerCss:{
					backgroundColor:"#333",
					padding:0,
					width:830
				},
				overlayClose:true
			});
	});

	
});
