function convertListToTable() {
	var li = document.getElementById('content-area').getElementsByTagName('li');
	
	var table=document.createElement('table');
	table.setAttribute('border','0');
	table.setAttribute('cellpadding','15');
	table.setAttribute('cellspacing','0');
	table.setAttribute('width','90%');
	
	var tbody=document.createElement('tbody');
	var rows=Math.floor(li.length/3);
	for (i=0; i < rows; i++) {
		var tr=document.createElement('tr');
		for (j=0; j < 3; j++) {
			var td=document.createElement('td');
			td.setAttribute('height','30');
			td.setAttribute('class','style11');
			if (i == 0) {
				if (j == 0) td.setAttribute('width','32%');
				else if (j == 1) td.setAttribute('width','36%');
				else if (j == 2) td.setAttribute('width','32%');
			}
			td.innerHTML=li[j*8+i].innerHTML;
			tr.appendChild(td);
		}
		tbody.appendChild(tr);
	}
	var tr=document.createElement('tr');
	
	var td=document.createElement('td');
	td.setAttribute('height','30');
	td.setAttribute('class','style11');	
	td.innerHTML='&nbsp;';
	tr.appendChild(td);
	
	td=document.createElement('td');
	td.setAttribute('height','30');
	td.setAttribute('class','style11');	
	td.innerHTML='&nbsp;';
	tr.appendChild(td);
	
	td=document.createElement('td');
	td.setAttribute('height','30');
	td.setAttribute('class','style11');	
	td.innerHTML=li[li.length-1].innerHTML;
	tr.appendChild(td);	
	
	tbody.appendChild(tr);
	table.appendChild(tbody);
	
	var remove=document.getElementById('content-area');
	remove.removeChild(remove.getElementsByTagName('p')[0]);
	remove.removeChild(remove.getElementsByTagName('ul')[0]);
	
	var d1=document.createElement('div');
	d1.setAttribute('class','wr_bot');
	
	var d2=document.createElement('div');
	d1.setAttribute('class','indent_box txt1');
	
	var img=document.createElement('img');
	img.setAttribute('src','/steveLE/sites/default/files/2title1.jpg');
	img.setAttribute('alt','');
	img.setAttribute('class','title');
	img.setAttribute('height','31');
	img.setAttribute('width','178');
	
	d2.appendChild(img);
	d2.appendChild(table);
	
	d1.appendChild(d2);
	
	remove.appendChild(d1);
}
