function movie(pID, pWidth, pHeight){	
	var flashvars = {
	  file: "/video/" + pID + ".flv",
	  image: "/video/screenshots/" + pID + ".jpg"
	};
	var params = {
	  allowfullscreen: "true"
	};
	
	swfobject.embedSWF("/inc/flash/flvplayer.swf", pID, pWidth, pHeight, "7.0.0", "expressInstall.swf", flashvars, params);	
}

$(function(){
	$(".flvMovie").each(function(){
		var lParams = $(this).attr("rel").split(":");
		$(this).html('<div id="' + lParams[0] + '"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</div>');
		movie(lParams[0], lParams[1], lParams[2]);
	})
});