// JavaScript Document

$(function() {
	$( "#fp_accordion" ).accordion({});
});

$(document).ready(function() {					   
	$("#flickr_badge_wrapper a").attr("target","_blank");

	$('#tds').fbWall({ id:'tilburgdansstad',
		showGuestEntries:true,
		showComments:true,
		max:3,
		timeConversion:24});
		
	$('.fp_slideshow').cycle({
		fx: 'fade'
	});
	
	$( ".fp_feed1" ).jScrollPane();
	$( ".fp_feed2" ).jScrollPane();
	$( ".fp_feed3" ).jScrollPane();
	
	var settings = {
	
	};
	
	var pane = $('.fp_feed1')
	pane.jScrollPane(settings);
	var api = pane.data('jsp');

	// Every second add some new content...
	setInterval(
		function()
		{
			api.getContentPane();
			api.reinitialise();
		}
	);
});


