function addSectionFormatting(){
	$('#ctl00_ContentPlaceHolder1_WucShowsMain1_WucReserveTickets1_ErrorBox1 table tr').each(
				function(index, domEle){
					switch(index)
					{
						case 0:
							$(domEle).before('<tr><td colspan="4"><hr /></td></tr><tr><td colspan="4" style="font-size: 20px"><b>Monday 13th February</b></td></tr><tr><td colspan="4"><b>Up Close and Personal in Conversation</b><br />Note: No Performance</td></tr><tr><td colspan="4"><hr /></td></tr>');
							break;
						case 4:
							$(domEle).before('<tr><td colspan="4"><hr /></td></tr><tr><td colspan="4" style="font-size: 20px"><b>Tuesday 14th Feburary</b></td></tr><tr><td colspan="4"><b>Musical Performance</b></td></tr><tr><td colspan="4"><hr /></td></tr>');
							break;
						case 8:
							$(domEle).before('<tr><td colspan="4"><hr /></td></tr><tr><td colspan="4" style="font-size: 20px"><b>Special Discounted Package</b></td></tr><tr><td colspan="4"><b>Tickets for both the Monday 13th and Tuesday 14th<br> of February Events</b></td></tr><tr><td colspan="4"><hr /></td></tr>');
							break;
							}
				
				});
}


