/*
 * 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 243 2010-03-15 14:23:14Z emartin24 $
 *
 */

jQuery(function ($) {
	jQuery('.map').click(function (e) {
		jQuery.modal('<iframe src="'+this.href+'&output=embed"></iframe><p class="larger"><a target="_blank" href="'+this.href+'">View larger</a></p>');
		return false;
		
		  return false;
	});
});

jQuery(function ($) {
	jQuery('.external').click(function (e) {
		jQuery.modal('<iframe src="'+this.href+'"></iframe><p class="larger"><a target="_blank" href="'+this.href+'">View larger</a></p>');
		return false;
		
		  return false;
	});
});





