jQuery(function() {
	jQuery('.wymeditor').wymeditor({
		lang: 'pl',
		postInit: function(wym) {
			jQuery(wym._box)
				.find(".wym_area_right")
				.removeClass("wym_area_right")
				.css("display", "none");
		}
	});
	
	$('p a img').each(function(){
		$(this).parent('a').fancybox({
			'transitionIn'	:	'swing',
			'transitionOut'	:	'swing',
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	false
		});
	});
	
	$('table a img').each(function(){
		$(this).parent('a').fancybox({
			'transitionIn'	:	'swing',
			'transitionOut'	:	'swing',
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	false
		});
	});

});

