/*
 * 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 254 2010-07-23 05:14:44Z emartin24 $
 */

jQuery(function ($) {
	// Load dialog on page load
	//$('#basic-modal-content').modal();




	/*// Load dialog on click
	$('.basic').click(function (e) {
		$('#basic-modal-content').modal({
	minHeight:"60%",
	minWidth: "60%"
});

		return false;
	});*/
	
	
	// Load dialog on click
	$('.basic_es').click(function (e) {
		$('#basic-modal-content_es').modal({
	minHeight:"50%",
	minWidth: "50%"
});

		return false;
	});
	$('.basic_en').click(function (e) {
		$('#basic-modal-content_en').modal({
	minHeight:"50%",
	minWidth: "50%"
});

		return false;
	});
	$('.basic_fr').click(function (e) {
		$('#basic-modal-content_fr').modal({
	minHeight:"50%",
	minWidth: "50%"
});

		return false;
	});
	
	
	
	
	$('.basic2_es').click(function (e) {
		$('#basic-modal-content2_es').modal({
	minHeight:"50%",
	minWidth: "50%"
});

		return false;
	});
	$('.basic2_en').click(function (e) {
		$('#basic-modal-content2_en').modal({
	minHeight:"50%",
	minWidth: "50%"
});

		return false;
	});
	$('.basic2_fr').click(function (e) {
		$('#basic-modal-content2_fr').modal({
	minHeight:"50%",
	minWidth: "50%"
});

		return false;
	});



	
	
	$('.basic3_es').click(function (e) {
		$('#basic-modal-content3_es').modal({
	maxHeight:"20%",
	maxWidth:"20%"
});

		return false;
	});
	$('.basic3_en').click(function (e) {
		$('#basic-modal-content3_en').modal({
	maxHeight:"20%",
	maxWidth:"20%"
});

		return false;
	});
	$('.basic3_fr').click(function (e) {
		$('#basic-modal-content3_fr').modal({
	maxHeight:"20%",
	maxWidth:"20%"
});

		return false;
	});
});




