/*
 * 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();
	$('.hide').hide();
	// Load dialog on click
	
	$('#tour1').click(function (e) {
		$('#tour-1').modal();

		return false;
	});
	
	$('#tour2').click(function (e) {
		$('#tour-2').modal();

		return false;
	});
	
	$('#tour3').click(function (e) {
		$('#tour-3').modal();

		return false;
	});
	
	$('#tour4').click(function (e) {
		$('#tour-4').modal();

		return false;
	});
	
	$('#tour5').click(function (e) {
		$('#tour-5').modal();

		return false;
	});
	
	$('#tour6').click(function (e) {
		$('#tour-6').modal();

		return false;
	});
	
	$('#tour7').click(function (e) {
		$('#tour-7').modal();

		return false;
	});
	
	$('#tour8').click(function (e) {
		$('#tour-8').modal();

		return false;
	});
	
	$('#tour9').click(function (e) {
		$('#tour-9').modal();

		return false;
	});
	
	$('#tour10').click(function (e) {
		$('#tour-10').modal();

		return false;
	});
	
	$('#tour11').click(function (e) {
		$('#tour-11').modal();

		return false;
	});
	
	$('#tour12').click(function (e) {
		$('#tour-12').modal();

		return false;
	});
});
