(function($) {
	$.fn.ciferenceEvents = function(settings) {
		var window = this;
		$(window).addClass('jqmWindow')
			.html('<img id="events-close" src="images/close.jpg" /><div id="events-content"><iframe id="eventsFrame" src="http://events.superorga.com/index.php?url=/calendar/export/index/2" /></div>')
			.jqm();
		$('#events-show').click(
			function () {
				$(window).jqmShow(); 
			}
		);		
		$('#events-close').click(
			function () {
				$(window).jqmHide(); 
			}
		);
	};
})(jQuery);

$(document).ready(
	function () {
		$('#events').ciferenceEvents();
	}
);
