(function(){
	var Dom = YAHOO.util.Dom;
	var Event = YAHOO.util.Event;
	Event.onDOMReady(function(){
		//alert('this');
		if(Dom.get('slide-show-side-text')){
			var section10 = document.getElementById('section10');
			var holder = document.createElement('div');
				holder.id='slide-show-holder';
				var hr1 = document.createElement('hr');
				hr1.className = 'slide-show-line';
				holder.appendChild(hr1);
				var table = document.createElement('table');
				table.id = 'slide-show-table';
				holder.appendChild(table);
				var tbody = document.createElement('tbody');
				table.appendChild(tbody);
				var tr = document.createElement('tr');
				tbody.appendChild(tr);
				var flholder = document.createElement('td');
				flholder.id = 'slide-show-flash-cell';
				tr.appendChild(flholder);
				var dsholder = document.createElement('td');
				dsholder.id = 'slide-show-disc-cell';
				dsholder.innerHTML = Dom.get('slide-show-side-text').innerHTML;
				tr.appendChild(dsholder);
				var hr2 = document.createElement('hr');
				hr2.className = 'slide-show-line';
				holder.appendChild(hr2);
			var flash = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="682" height="234" id="tech" align="middle">'+
			'<param name="allowScriptAccess" value="sameDomain" />'+
			'<param name="movie" value="user/265767/images/slides/slides.swf?xml_path=user/265767/images/slides/slides.xml" />'+
			'<param name="quality" value="high" />'+
			'<param name="wmode" value="transparent" />'+
			'<embed src="user/265767/images/slides/slides.swf?xml_path=user/265767/images/slides/slides.xml" quality="high" wmode="transparent" width="682" height="234" name="tech" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			flholder.innerHTML = flash;
			section10.appendChild(holder);
			Dom.get('slide-show-side-text').innerHTML = '';
		}
	});
})();