$(
	function(){
	
		$("#rightSub h2").each(
		function(){
			var text = $(this).html();
			
			var out = '<object width="575" height="60" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"><param value="/images/flash/title.swf?labeltext='+text+'" name="movie"/><param value="high" name="quality"/><param value="transparent" name="wmode"/><embed width="575" height="60" type="application/x-shockwave-flash" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="/images/flash/title.swf?labeltext='+text+'"/></object>';
			
		
			$(this).html(out);
		});
	}
);