$(
	function(){
	
		$('#p_landResearch ul#contentSubNAV li').each(		
			function(){
					
					var width = $(this).width();
					//var height = $(this).css("height");
					
				var flash = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="46" class="menu_item_blue" align="middle"><param name="sAlign" value="LT" /><param name="allowScriptAccess" value="always" /><param name="scale" value="noscale" /><param name="movie" value="/contentImages/flash/menu_item_blue.swf" /><param name="quality" value="high" /><param name="flashVars" value="labeltext='+escape($(this).text())+'&labellink='+escape($(this).children("a").attr('href'))+'&backgroundimage='+escape($(this).css('background-image'))+'" /><param name="wmode" value="transparent" /><embed src="/contentImages/flash/menu_item_blue.swf" quality="high" width="'+width+'" height="46" name="menu_item_blue" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" sAlign="LT" scale="noscale" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" flashVars="labeltext='+escape($(this).text())+'&labellink='+escape($(this).children("a").attr('href'))+'&backgroundimage='+escape($(this).css('background-image'))+'" /></object>';	
			
				$(this).replaceWith(flash);
			}
		);
	}
)