$(document).ready(function()
{
    if($('h1').text() == 'Kalender')
    {
		$('div.previous').hide();
		$('#content h2:first').wrapInner('<a href="#" class="open close" title="Klicken Sie hier, um das gesamte Jahr zu sehen." />').nextAll('#content h2').wrapInner('<a href="#" class="open" title="Klicken Sie hier, um das gesamte Jahr zu sehen." />');
		$('h2', '#content').live('click',function(){
			$(this).nextUntil('hr').slideToggle('slow');
			$(this).children("a:first").toggleClass("close");
			return false;
		});
    }

	if($('#press_cite').length > 0) 
	{
		$('#press_cite').innerfade({
			speed: '10000', 
			timeout: '10000',
			containerheight: '170px',
			type: 'random_start',
			children: 'cite'
		});
	};
});
