$(document).ready(function() {
	$('div.bildcontainer a').lightBox();
	$('.headline').click(
		function() { 
			$(this).next('.description').slideToggle();
		}
	);
	if($('#editor').length != 0) {
		CKEDITOR.replace( 'editor',
			{
				customConfig : 'ostpol_config.js'
				/* filebrowserBrowseUrl : 'browser.php', */
			});
	}
});

