jQuery.noConflict();
	jQuery("document").ready( function($) {
		pages = Math.ceil ( $(".pic_jNews #newsuebersicht").children().size() / 6 );
		$(".pic_jNews").prepend("<div class='navigation'/>");
		$(".pic_jNews").append("<div class='news_wrapper'/>");
		for ( page = 0 ; page < pages ; page++ ) {
			$(".pic_jNews .navigation").append("<li><a id='" + page + "' href='#' title='Seite " + ( page + 1 ) + "'>" + ( page + 1 ) + "</a></li>");
		}
		$(".pic_jNews .navigation").wrapInner("<ul/>");
		$(".pic_jNews #newsuebersicht .news").each( function( index ) {
			$(this).attr( "id" , index );
		});
		$(".pic_jNews .navigation a").click( function() {
			currentPage = $(this).attr("id");
			beginn = currentPage * 6;
			$(".pic_jNews #newsuebersicht .news").each( function( index ) {
				if ( index >= beginn && index < ( beginn + 6 ) ) { $(this).fadeIn(); }
				else { $(this).hide(); }
			});
			$(".pic_jNews .navigation a").each( function( index ) {
				if ( index == currentPage ) { $(this).addClass("active"); }
				else { $(this).removeClass("active"); }
			});
			return false;
		});
		$(".pic_jNews .navigation a#0").click();
	});
