$(document).ready(function(){
			$.ajax({
				type: "GET",
				url: "service_get.ashx?sid=r1ixxcmgcv5jntwhevs2w2fb&command=get_livetv_schedule",
				dataType: "xml",
				beforeSend: function() {
					$("#SItextCont").html("<div style='margin-left:280px'><br/><img src='img/90.gif' alt='' border='0'/><br/><br/></div>")
				},
				success: function(xml) {
					
					$("#SItextCont").html("")
					$(xml).find('w24newsitem').each(function(){
						var time = $(this).find('start').text();
						var headline = $(this).find('headline').text();
						
							
							
							
							
							
							
							var strCI='<td width="60" valign="top"><b>' + time + '</b></td>'
								strCI+='<td><b>' + headline + '</b></td>'
						
						
							
							
					$('<tr></tr>').html(strCI).appendTo('#SItextCont');
						
						
						
					});
				}
			});
		});
		
		
		
