
/* Parameters for embedding Flash with SWFObject: */
		
/* 1) Relative path to swf file */
var pathToFlashContent = "swf/splash.swf";

/* 2) Div ID where swf should be embedded, replaces anything currently within this div tag */
var divID = "swfContent";

/* 3) Width of Flash movie */
var flashWidth = 525;

/* 4) Height of Flash movie */
var flashHeight = 300;

/* 5) Flash Minimum Version – Check with Flash developer for required version */
var flashMinVersion = "9.0.0";

/* 6) Path to "expressInstall.swf" for providing a simple pop-up installer to upgrade 
	the Flash Player if visitor doesn't meet minimum version requirement */
var pathToInstaller = "swf/expressInstall.swf";
  
/****OPTION PARAMETERS BELOW: **** 
	(If you want to skip one, just enter {} (no quotes) in place of the variable name in the 
	'embedSWF' function below on line 69. */

/* 7) Variables you want to pass into Flash to be read by ActionScript. If none
needed just pass an empty object: {}  instead of the 'flashvars' var name in the embedSWF() call. */
var flashvars = {
  name1: "hello",
  name2: "world",
  name3: "foobar"
};

/* 8) Parameters used for customization of the Flash Player 
	'wmode' values: "window" (default), "opaque", "transparent"
	(Use "transparent" if you want to see the page content behind the Flash object layers.) */
var params = {
	menu: "false",
	wmode: "transparent"
};

/*	9) Specify attributes for the div container, if needed. Pass {} instead of variable name, 
	or skip if not needed.*/
var attributes = {
  id: "myFlashContent",
  name: "myFlashContent"
};
/**** End of OPTIONAL PARAMETERS ****/

/***  Pass all the above into the SWFObject call: ***/
swfobject.embedSWF(pathToFlashContent, divID, flashWidth, flashHeight, flashMinVersion, pathToInstaller, flashvars, params, attributes);

