$("document").ready(
	function(){
		$("div#article_content img").filter(
			function(){
				// sciezka do pliku
				var src = $(this).attr('src');
				var srcbig = src.replace( '_min', '' );
				if( $(this).attr('class') == '' )
				{
					$(this).wrap( '<a href="' + srcbig + '" title="" class="thickbox"></a>' );
				}
			}
		);
	}
);
