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



function Show (idobj) {

$('#'+current).hide();
$('#'+idobj).show("slow");
current = idobj;	
}

