function jQueryPrint(data, liveDivID){
    $('#'+liveDivID).html(data);
}
function startLive(url){
    $('body').after("<script src='"+ url + "&dt="+new Date().getTime()+"'><script>");
    setInterval(function(){
        $('body').after("<script src='"+ url + "&dt="+new Date().getTime()+"'><script>");
    }, 30000);
}

function updateLiveCount(num){
	$('#liveCount').html(num);
}
function openTab(){
 $("#liveMatches").click();
}
