
$(function() {
	// setup scrolling for the playlist elements
	$("div.playlist").scrollable({
		items:'div.clips',
		vertical:true,
		next:'a.down',
		prev:'a.up'
	});
	
	// setup player 
	$f("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
	
		clip: {baseUrl: 'http://blip.tv/file/get'} 
		
	// use playlist plugin to enable playlist items work as movie clips
	}).playlist("div.clips");		
});
