//Scripts
var hide_box = false;
function checkOnline(){
		$.post('getMethod.php',{actionName:'checkOnair'},function(html){
			//alert(html);
			if($("#header_onair").html()!=html){
				$("#header_onair").html(html);
			}
			setTimeout("checkOnline()",300000)
		})
	}
	
$(document).ready(function(){
	setTimeout("checkOnline()",300000);

//Ajax load for top navigation
		
	$("a.top_navigation_ajax").bind('click',function(){
		
		href = $(this).attr('rel');
		if(href!=''){
			window.location.href = href;
		}
		//return false;
	});

});
