/*****************************************************/
/* Firefox fix for Bars                              */
/*****************************************************/
/* JS document for http://www.cbafitness.hu website  */
/* Copyright 2007 anaiz                              */
/* contact developer at info@anaiz.hu                */
/*                      wwww.anaiz.hu                */
/*****************************************************/

startList = function() {
if (document.getElementById) {
  bar1 = document.getElementById("images");
  bar2 = document.getElementById("text");
  if (bar1.clientHeight<bar2.clientHeight) {
    bar1.style.height = bar2.clientHeight;
  }
 }
}
window.onload=startList;
