// JavaScript Document

	fsnd_statistics = new Image(1,1);
    fsnd_single_page = new Image(1,1);
    fsnd_statistics.src = "http://counter.fsnd.de/add_stats.php?id=59&pwd=feller&refer="+escape(document.referrer)+"&scrd="+screen.colorDepth+"&scrw="+screen.width+"&doc_url="+document.URL;
    fsnd_single_page.src = "http://counter.fsnd.de/single_page.php?id=59&pwd=feller&url="+document.URL;

var showNews = true;
	
var j = jQuery.noConflict();

j(document).ready(function() 
 {	
 	if( showNews )
	{
	   //j('#scrollInfo').marquee();
           //j('#laufschrift').marquee();
	   j('#laufschrift').fadeOut( 1 );
	   j('#laufschrift').fadeIn( 4000, function() 
		  {
			// Animation complete
		  });
	   
			// basic version is: $('div.demo marquee').marquee() - but we're doing some sexy extras
			
			j('#laufschrift').marquee('pointer').mouseover(function () 
			{
				j(this).trigger('stop');
			}).mouseout(function () {
					j(this).trigger('start');
			}).mousemove(function (event) {
					if (j(this).data('drag') == true) {
						this.scrollLeft = j(this).data('scrollX') + (j(this).data('x') - event.clientX);
					}
			}).mousedown(function (event) {
					j(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
			}).mouseup(function () {
					j(this).data('drag', false);
		  });
	}
		
 });
