/*
 * 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 $
 *
 */

jQuery(document).ready(function () {
	jQuery('a.sub').click(function (e) {
		var href = $(this).attr("href");
		jQuery.modal('<iframe src="' + href + '" width="600" height="390" frameborder="0"></iframe>');
		autoResize: true
		return false;
	});
		
	jQuery('a.glosuj2').click(function (e) {
		var href = $(this).attr("href");
		jQuery.modal('<iframe src="glosowanie.php?id=' + href + '" width="600" height="390" frameborder="0"></iframe>');
		return false;
		autoResize: true

	});

	jQuery('a.glosuj3').click(function (e) {
		var href = $(this).attr("href");
		jQuery.modal('<iframe src="glosowanie2.php?id=' + href + '" width="600" height="390" frameborder="0"></iframe>');
		return false;
		autoResize: true

	});


});


