var staticLightbox;

$(window).addEvent('domready', function(){
	
	staticLightbox = new LightboxSmoothgallery();
	$$('.news-single-img a').each( function( item, i ){
		var url = /file=(.*)&md5/.exec( item.getProperty('href') );
		item.setProperty( 'href', decodeURIComponent( url[1] ) );
		item.setProperty('rel', 'lightbox');
		item.setProperty( 'onclick',null );
	})
	$$('a[rel=lightbox], .news-single-img a').addEvent( 'click', function( e ){	
		e.stopPropagation();
		e.preventDefault();
		staticLightbox.click( this );
	});

		/*	
	$('.news-kategorie-link').each( function( item, i ){
		console.log( item );		
	});
	*/
});
