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

$(document).ready(function () {
	$('.cheesecake1').click(function (e) {
		e.preventDefault();
		$('#whitechocolatealmond').modal();
	});
	
	$('a.cheesecake2').click(function (e) {
		e.preventDefault();
		$('#chocolatedecadence').modal();
	});
	
	$('a.cheesecake3').click(function (e) {
		e.preventDefault();
		$('#peanutbuttercup').modal();
	});
	
	$('a.cheesecake4').click(function (e) {
		e.preventDefault();
		$('#creamycoconut').modal();
	});
	
	$('a.cheesecake5').click(function (e) {
		e.preventDefault();
		$('#raspberryswirl').modal();
	});
	
	$('a.cheesecake6').click(function (e) {
		e.preventDefault();
		$('#cranberryorange').modal();
	});
	
	$('a.cheesecake7').click(function (e) {
		e.preventDefault();
		$('#limetwist').modal();
	});
	
	$('a.cheesecake8').click(function (e) {
		e.preventDefault();
		$('#lemonblueberry').modal();
	});
	
	$('a.cheesecake9').click(function (e) {
		e.preventDefault();
		$('#pumpkin').modal();
	});
	
	$('a.cheesecake10').click(function (e) {
		e.preventDefault();
		$('#giftcertificate').modal();
	});
});