// Store specific properties for Flash movies
movies = [

{ elmId: 'homeMasthead', swf: 'placeholder.swf', width: 948, height: 300 },
{ elmId: 'placeholder', swf: 'placeholder.swf', width: 948, height: 300 },
{ elmId: 'greenFlash', swf: '/flash/green/sustainability_main.swf', width: 760, height: 353 }

]


function loadFlash(movies) {
	movies.each(function(item){
		swfobject.embedSWF(item.swf, item.elmId, item.width, item.height, '8.0.0', 'expressInstall.swf', {'wmode': 'transparent'} )
	})
}