Cufon.replace('.link', {hover: true});
Cufon.replace('#navi-add, #impressum, #aktuell a', {hover: true});
Cufon.replace('h2');
Cufon.replace('h3');
Cufon.replace('label, #footer a, #telefon');



function readMore(cont) {
	var contents = cont.find('.klapp');
	
	contents.each(function() {
		$(this).find('p:not(:first-child)').hide(); 
		$(this).append('<a href="#" class="open">open</a>');
		
		$(this).find('a').toggle(
			function() {
				$(this).parent().find('p:not(:first-child)').stop().slideToggle();
				$(this).toggleClass('close');
				return false;
			},
			function() {
				$(this).parent().find('p:not(:first-child)').stop().slideToggle();
				$(this).toggleClass('close');
				return false;
			}
		);
	});
}




$(document).ready(function() {
	
	
	
	$('body').removeClass('nojs');
	
	if ($().lightbox) {
		$('a[rel^="lightbox"]').lightbox();	
	}
	
	readMore($('#content-main'));



});

