$(document).ready(function(){

    if($('div#videoplayer').length>0){
		$('div#videoplayer').each(function() {
		var video=posterFrame=null;

		$(this).find('p').hide();

		video=$(this).find('p:first a').attr('href');
		posterFrame=$(this).find('p:first img').attr('src');

		if(video)
			$('div#videoplayer').flash({
				src: '/TDB/videos/videoplayer.swf',
				width:357,
				height:314,
				flashvars: { videoUrl:'../../'+video, posterFrame:'../../'+posterFrame, initialVolume:.75, autoPlay:false }
			});
		});
	}
});
