/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2009 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 185 2009-02-09 21:51:12Z emartin24 $
 *
 */

$(document).ready(function () {
	$('#cont a.basic1').click(function (e) {
		e.preventDefault();
		$('#basicModalContent1').modal();
	});
});

$(document).ready(function () {
	$('#cont a.basic2').click(function (e) {
		e.preventDefault();
		$('#basicModalContent2').modal({
		    overlayCss: {
                backgroundColor: '#000',
                cursor: 'wait'
            },
            containerCss: {
                height: 400,
                width: 600,
                backgroundColor: '#fff',
                padding: '10px',
                border: '3px solid #ccc'
            }
		});
	});
});

$(document).ready(function () {
	$('#cont a.basic3').click(function (e) {
		e.preventDefault();
		$('#basicModalContent3').modal({
		    overlayCss: {
                backgroundColor: '#000',
                cursor: 'wait'
            },
            containerCss: {
                height: 350,
                width: 600,
                backgroundColor: '#fff',
                padding: '10px',
                border: '3px solid #ccc'
            }
		});
	});
});

$(document).ready(function () {
	$('#cont a.basic4').click(function (e) {
		e.preventDefault();
		$('#basicModalContent4').modal({
		    overlayCss: {
                backgroundColor: '#000',
                cursor: 'wait'
            },
            containerCss: {
                height: 390,
                width: 600,
                backgroundColor: '#fff',
                padding: '10px',
                border: '3px solid #ccc'
            }
		});
	});
});

$(document).ready(function () {
	$('#cont a.basic5').click(function (e) {
		e.preventDefault();
		$('#basicModalContent5').modal({
		    overlayCss: {
                backgroundColor: '#000',
                cursor: 'wait'
            },
            containerCss: {
                height: 380,
                width: 600,
                backgroundColor: '#fff',
                padding: '10px',
                border: '3px solid #ccc'
            }
		});
	});
});

$(document).ready(function () {
	$('#cont a.basic6').click(function (e) {
		e.preventDefault();
		$('#basicModalContent6').modal({
		    overlayCss: {
                backgroundColor: '#000',
                cursor: 'wait'
            },
            containerCss: {
                height: 380,
                width: 600,
                backgroundColor: '#fff',
                padding: '10px',
                border: '3px solid #ccc'
            }
		});
	});
});

$(document).ready(function () {
	$('#cont a.basic7').click(function (e) {
		e.preventDefault();
		$('#basicModalContent7').modal();
	});
});

$(document).ready(function () {
	$('#cont a.basic7').click(function (e) {
		e.preventDefault();
		$('#basicModalContent7').modal();
	});
});

$(document).ready(function () {
	$('#cont a.basic8').click(function (e) {
		e.preventDefault();
		$('#basicModalContent8').modal({
		    overlayCss: {
                backgroundColor: '#000',
                cursor: 'wait'
            },
            containerCss: {
                height: 380,
                width: 600,
                backgroundColor: '#fff',
                padding: '10px',
                border: '3px solid #ccc'
            }
		});
	});
});

$(document).ready(function () {
	$('#cont a.basic9').click(function (e) {
		e.preventDefault();
		$('#basicModalContent9').modal({
		    overlayCss: {
                backgroundColor: '#000',
                cursor: 'wait'
            },
            containerCss: {
                height: 350,
                width: 600,
                backgroundColor: '#fff',
                padding: '10px',
                border: '3px solid #ccc'
            }
		});
	});
});