/*
 * 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
	$('.lifting .basic').click(function (e) {
		$('#lifting_btn_1_content').modal({overlayClose:true});

		return false;
	});
	
	$('.lifting-2 .basic').click(function (e) {
		$('#lifting_btn_2_content').modal({overlayClose:true});

		return false;
	});
	
	$('.boxing-1 .basic').click(function (e) {
		$('#boxing-1-content').modal({overlayClose:true});

		return false;
	});
	
	$('.boxing-2 .basic').click(function (e) {
		$('#boxing-2-content').modal({overlayClose:true});

		return false;
	});
	
	$('.fencing-1 .basic').click(function (e) {
		$('#fencing-1-content').modal({overlayClose:true});

		return false;
	});
	
	$('.fencing-2 .basic').click(function (e) {
		$('#fencing-2-content').modal({overlayClose:true});

		return false;
	});
	
	$('.rowing-1 .basic').click(function (e) {
		$('#rowing-1-content').modal({overlayClose:true});

		return false;
	});
	
	$('.rowing-2 .basic').click(function (e) {
		$('#rowing-2-content').modal({overlayClose:true});

		return false;
	});
	
	$('.video .basic').click(function (e) {
		$('#video-content').modal({overlayClose:true});

		return false;
	});
	
	$('.manny-1 .basic').click(function (e) {
		$('#manny-1-content').modal({overlayClose:true});

		return false;
	});
	
	$('.manny-2 .basic').click(function (e) {
		$('#manny-2-content').modal({overlayClose:true});

		return false;
	});
	
});

