/*
 * 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-modal1 .basic1').click(function (e) {
		//$('#basic-modal-content').modal();
		$('<div></div>').load('about_aditya.html').modal1();

		return false;
	});
	
		$('#basic-modal2 .basic2').click(function (e) {
		//$('#basic-modal-content').modal();
		$('<div></div>').load('gallery.html').modal2();

		return false;
		});

		$('#basic-modal3 .basic3').click(function (e) {
		//$('#basic-modal-content').modal();
		$('<div></div>').load('performance.html').modal3();

		return false;
		});
		
		$('#basic-modal4 .basic4').click(function (e) {
		//$('#basic-modal-content').modal();
		$('<div></div>').load('schedule.html').modal4();

		return false;
		});
		
		$('#basic-modal5 .basic5').click(function (e) {
		//$('#basic-modal-content').modal();
		$('<div></div>').load('press.html').modal5();

		return false;
		});
		
		$('#basic-modal6 .basic6').click(function (e) {
		//$('#basic-modal-content').modal();
		$('<div></div>').load('theband.html').modal6();

		return false;
		});
		
		$('#basic-modal7 .basic7').click(function (e) {
		//$('#basic-modal-content').modal();
		$('<div></div>').load('smf.html').modal7();

		return false;
		});
		
		$('#basic-modal8 .basic8').click(function (e) {
		//$('#basic-modal-content').modal();
		$('<div></div>').load('contact.html').modal8();

		return false;
		});
});
