if(!document.FIN)
{
	window.addEvent('domready', function()
								{
									function randOrd()
									{
										return (Math.round(Math.random())-0.5);
									}
																	
									strPath			= "/z_swf/";								
									mastheadArray 	= new Array('pr_header01.swf', 'pr_header02.swf', 'pr_header03.swf', 'pr_header04.swf');
									intRandom		= Math.floor(Math.random()*(mastheadArray.length-1));
									mastheadArray.sort(randOrd);
									
									var so = new SWFObject(strPath+mastheadArray[intRandom], "ink", "710", "220", "8.0", "#FFFFFF");
									so.addParam('wmode', 'opaque');
									so.addParam('menu', 'false');
									so.addParam('scale', 'noscale');
									so.write('img_masthead');
								});
}