jQuery.noConflict();
	jQuery(document).ready(function(){
		jQuery(document).pngFix();
		jQuery("#simply-scrolling").simplyScroll({
			autoMode: 'loop',
			speed: 2
		});

		jQuery('#tweets').jTweetsAnywhere({
		    searchParams: ['ors=%23strooipop+%23strooipop2011+%40strooipop+from%3Astrooipop'],//
		    count: 5,
		    showTweetFeed: {
		        showTimestamp: {
		            refreshInterval: 45
		        },
		        autorefresh: {
		            mode: 'auto-insert',
		            interval: 45,
		            duration: -1
		        },
		        paging: { mode: 'none' },
		        expandHovercards: false,
		        showUserScreenNames: true,
		        includeRetweets: true,
		        showGeoLocation: false,
		        showProfileImages: false
		    },
		    
		    onDataRequestHandler: function(stats, options) {
		        if (stats.dataRequestCount < 26) {
		            return true;
		        }
		        else {
		            stopAutorefresh(options);
		            alert("Om het twitter limiet tegen te gaan, stoppen we deze feed na 25 verzoeken. vernieuw aub de pagina.");
		        }
		    }
		});
		
	});
