// JavaScript Documentvar aktifHaberIndex = 0;
var toplamHaberSayisi = 1;
function getElement(psID) {
   if(document.all) {
      return document.all[psID];
   } else {
      return document.getElementById(psID);
   }
} 
function haberiGoster(haberIndex){
   for(i=0;i<toplamHaberSayisi;i++){
      hidediv("baslik_"+i);
      hidediv("haber_"+i);      
	  getElement("habertd_"+i).style.backgroundColor = "#FFFFFF";
   }
   showdiv("baslik_"+haberIndex);
   showdiv("haber_"+haberIndex);
   getElement("habertd_"+haberIndex).style.backgroundColor = "#ADD8E6";   
   aktifHaberIndex = haberIndex;   
}
function hidediv(divIdName) {
   getElement(divIdName).style.display = 'none';
}

function showdiv(divIdName) {
      getElement(divIdName).style.display = 'inline';
}
