$( function(){
	
	// Letzten Border Bottom entfernen
	$( 'li ul li:last' ).css( { 'border': 'none', 'margin-bottom': 40 } );
	// Schulticker highlighten
	var pattern = new RegExp( /(Schulticker)/ );
	$( 'div#content:contains("Schulticker")' ).each( function()
	{
		var str = $( this ).html();
		$( this ).html( str.replace( pattern,  '<span class="schulticker">$1</span>' ) );
	} );
	// Sidebar Hintergrund
	$( '#sidebar .sidebar-content:first' ).find( '.content' ).addClass( 'toptexte' );
	// Cookie auf der Startseite setzen
	$( '#index a' ).each( function()
	{
		$( this ).click( function()
		{
			$.cookie( 'schulticker', this.href, { expires: 7 } );
		} );
	} );
	
} );
