$(function() {
	// setup player without "internal" playlists
	$f("player2", "http://www.roottowin.com/swf/flowplayer-3.2.2.swf", {
		clip: {
			baseUrl: 'http://www.roottowin.com/video',
			autoBuffering: true,
			autoPlay: true,
			onBeforeFinish: function(){this.stop();}
		} 
			
	// use playlist plugin. again loop is true
	}).playlist("div.petrol", {loop:false});
	
		$("div.petrol a").each(function() {
		$(this).hover(function(){
			 $(this).stop().animate({opacity:1.0},50);
			 },
			 function(){
				 $(this).stop().animate({opacity:0.5},200);
			 });
	});
	
});
