/*
 * 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 212 2009-09-03 05:33:44Z emartin24 $
 *
 */
$(function() {
        $('#photos a.imglink').lightBox();
        $('#photos a.textlink').lightBox();
        $('#parametryObr a.imglink').lightBox();
        $('#nastred a.imglink').lightBox();
        $('.nastred a.imglink').lightBox();
});

$(document).ready(function () {
	$('.basic-modal a.basic').click(function (e) {
		e.preventDefault();
		checkElement = $(this).next();
		$(checkElement).modal({
			minHeight:500,
			maxHeight:500,
			minWidth: 700,
			maxWidth: 900
		});
	});
});


