
	function FilterTitle ( title ) {
		if ( title.search ( "#" ) < 0 )
			return [600,500];
		
		var re	= /\b.*#\b/;
		var nw 	= title.replace( re, "" );
		return nw.split("x");
	}
	
	function InitImage () 
	{
		if ( !$("#dialog").size() ) 
			$("body").append( '<div id="dialog" class="jqmWindow">jqm</div>' );
		
		$("a[rel='nowaWarstwa']").click( function()
		{
			var url 		= "/zoom.php?obraz=" + $( this ).attr("href");
			var dimensions	= FilterTitle ( $( this ).attr("title") );
			// alert ( "dimensions: " + dimensions );
			var opn	= function(hash) {
				hash.w.css( 'width', dimensions[0] ).show(); 
				hash.w.css( 'margin-left', (dimensions[0]/2)*-1 ).show(); 
				hash.w.css( 'height',dimensions[1] ).show(); 
			};
			$('#dialog').jqm( { ajax: url, modal: false, onShow: opn } ).jqmShow();
			return false;
		});
	}
	 