jQuery(document).ready(function() {
  jQuery('#ticker-wrapper').ticker({
        speed: 0.10,           // The speed of the reveal
        ajaxFeed: true,       // Populate jQuery News Ticker via a feed
        feedUrl: 'http://www.sixpockets.de/feed/',        // The URL of the feed
	                       // MUST BE ON THE SAME DOMAIN AS THE TICKER
        feedType: 'xml',       // Currently only XML
        htmlFeed: false,        // Populate jQuery News Ticker via HTML
        debugMode: false,       // Show some helpful errors in the console or as alerts
  	                       // SHOULD BE SET TO FALSE FOR PRODUCTION SITES!
        controls: false,        // Whether or not to show the jQuery News Ticker controls
        titleText: 'News',   // To remove the title set this to an empty String
        displayType: 'fade', // Animation type - current options are 'reveal' or 'fade'
        direction: 'rtl',       // Ticker direction - current options are 'ltr' or 'rtl'
        pauseOnItems: 5000,    // The pause on a news item before being replaced
        fadeInSpeed: 600,      // Speed of fade in animation
        fadeOutSpeed: 300      // Speed of fade out animation
    });
});
