var dStart = function()
{
	this.init = function ( v )
	{
// * @cat plugins/flash
// *
// * @example $('#hello').flash({ src: 'hello.swf' });
// * @desc Embed a Flash movie.
// *
// * @example $('#hello').flash({ src: 'hello.swf' }, { version: 8 });
// * @desc Embed a Flash 8 movie.
// *
// * @example $('#hello').flash({ src: 'hello.swf' }, { expressInstall: true });
// * @desc Embed a Flash movie using Express Install if flash isn't installed.
// *
// * @example $('#hello').flash({ src: 'hello.swf' }, { update: false });
// * @desc Embed a Flash movie, don't show an update message if Flash isn't installed.

		var flashvars = {
			data: "flash/data/points.xml"
		};
		var param_html = {
			src: "flash/001.swf",
			width: 610,
			height: 146,
			bgcolor: "#ffffff",
//			wmode: "transparent",
			loop: "true",
			flashvars: flashvars
		};
		var param_plugin = {
			version: '8'
		} ;

		$("#flash").flash ( param_html, param_plugin ) ;
	} ;

};

dStart = new dStart ;

$(document).ready(function(){
	dStart.init() ;
});
