﻿
LM.Titles = {
	InitFlash: function()
	{
		var flashvars1 = 
		{
			//custom flash vars go here as JavaScript object properites
			//use native data types where necessary i.e. Boolean, Number, String
			host: path
		};
		var params = 
		{
			// properties of the embed and object html tags
			menu: 	"true",
			scale: 	"noscale", 
			wmode: 	"transparent"
		};
		var attributes = 
		{
			// any custom HTML attributes
			id: 	"flashMovie",
			name: 	"flashMovie"
		};

		// does the actual embed, replace all values wrapped in <>
		swfobject.embedSWF(path + "/flash/_level0.swf", "titlesFlash", "968", "440", "9.0.0", "js/swfobject/expressInstall.swf", flashvars1, params, attributes);

	}
}

//window.addEvent('domready', function () {
	LM.Titles.InitFlash();
//});
