function getNewsTab(cat)
{
    var xmlHttp;
	var cat  = cat;
	try{xmlHttp = new XMLHttpRequest();}
	catch(e)
	{
		 try
		 {
			xmlHttp = new ActiveXObject("Mxml2.XMLHTTP");
		 }
		catch(e)
		{
			 try
			 {
			  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			 }
			 catch(e)
			 {
			  alert("Your browser does not support Ajax");
			  return false;
			 }
		}
	}
 	xmlHttp.onreadystatechange=function()
    {
		if(xmlHttp.readyState==4)
		{    
			//alert(xmlHttp.responseText);		
			document.getElementById('tabbed').innerHTML=xmlHttp.responseText;

		}
    }
	xmlHttp.open("GET","http://www.brahmand.com/news/getNewsTab.php?cat="+cat,true);
	xmlHttp.send(null);
}
function init(){setInterval('getHomepageStory(0)',6000);}