// JavaScript Document
var flvsrc = '/swf/FLV%20Player.swf';
//var skinsrc = '/flv/SkinOverPlaySeekMute.swf';
var skinsrc = '/swf/SkinOverPlayStopSeekMuteVol.swf';

$(document).ready(function() { 
	$('.FLVPlayback').each(function() {
		vars = { 
			skinurl: skinsrc,
			movieurl: $(this).attr('movie') ,
			vidWidth: $(this).width(),
			vidHeight: $(this).height()
		};
		$(this).flash({src: flvsrc, flashvars: vars, width: $(this).width(), height: $(this).height()});
	});
	
	$('.intromovie').each(function() {
		vars = { 
			xmlfile: "/includes/home.php"
		};
		
		$(this).flash({src: '/swf/home.swf', flashvars: vars, wmode:'opaque', width: $(this).width(), height: $(this).height()});
	});
});
