/**
 * swfobject.execute.js
 * @version	1.2 - 11:30 2011/05/26
 * @see		SWFObject JavaScript API documentation
 * 			http://code.google.com/p/swfobject/wiki/api
 * @usage	swfobject.embedSWF(
				swfURL:String,
				replaceElementId:String,
				width:String,
				height:String,
				playerVersion:String,
				expressInstallSwfUrl:String,
				flashvars:Object,
				params:Object,
				attributes:Object
			);
 */

(function() {
	var swfurl        = './f/index.swf?nocache=20110525',
		elementId     = 'flashContent',
		swfwidth      = '100%',
		swfheight     = '350',
		playerversion = '10.0',
		
		// Express Install を使わずに代替コンテンツを表示する場合は null
		expressInstall = null,
		// expressInstall = './lib/swfobject2.2/expressInstall.swf',
		
		flashvars = {},
		
		params = {
			base: '.',
			bgcolor: '#B30000',
			menu: 'false',
			quality: 'high',
			scale: 'noScale',
			salign: 'TL'
		},
		
		attributes = {};
	
	swfobject.embedSWF(swfurl, elementId, swfwidth, swfheight, playerversion, expressInstall, flashvars, params, attributes);
})();

