<!-- gizle eskilerden

if (document.images) {
  var today1off = new Image() // inactive imaj
  today1off.src = "b_00.gif"
  var today1on = new Image() // active imaj
  today1on.src = "btn_4.gif"
}
function act1() {
  if (document.images)
    document.images.today1.src = today1on.src
}
function inact1() {
  if (document.images)
    document.images.today1.src = today1off.src
}

if (document.images) {
  var today2off = new Image() // inactive imaj
  today2off.src = "b_22.gif"
  var today2on = new Image() // active imaj
  today2on.src = "btn_1.gif"
}
function act2() {
  if (document.images)
    document.images.today2.src = today2on.src
}
function inact2() {
  if (document.images)
    document.images.today2.src = today2off.src
}


if (document.images) {
  var today3off = new Image() // inactive imaj
  today3off.src = "b_11.gif"
  var today3on = new Image() // active imaj
  today3on.src = "btn_7.gif"
}
function act3() {
  if (document.images)
    document.images.today3.src = today3on.src
}
function inact3() {
  if (document.images)
    document.images.today3.src = today3off.src
}


// 

