<!--//--><![CDATA[//><!--
  var d = document;

  function getHeight(){
    var box = new Array("left_column", "main_content"); //list of DIV ids
    for(x=0;x<box.length;x++){ //determine the tallest div
      h = d.getElementById(box[x]).offsetHeight;
      for(y=0;y<box.length;y++){
        test_h = d.getElementById(box[y]).offsetHeight;
        if(h<test_h) h = test_h;
      }  
    }
    for(x=0;x<box.length;x++) d.getElementById(box[x]).style.height = h +"px"; //set the height of all divs to the tallest

    var box1 = new Array("product_l_cont", "product_r_cont"); //list of DIV ids
    for(x=0;x<box1.length;x++){ //determine the tallest div
      h1 = d.getElementById(box1[x]).offsetHeight;
      for(y=0;y<box1.length;y++){
        test_h1 = d.getElementById(box1[y]).offsetHeight;
        if(h1<test_h1) h1 = test_h1;
      }  
    }
    for(a=0;a<box1.length;a++) d.getElementById(box1[a]).style.height = h1 +"px"; //set the height of all divs to the tallest

    var box2 = new Array("product_l_cont2", "product_r_cont2"); //list of DIV ids
    for(x=0;x<box2.length;x++){ //determine the tallest div
      h2 = d.getElementById(box2[x]).offsetHeight;
      for(y=0;y<box2.length;y++){
        test_h2 = d.getElementById(box2[y]).offsetHeight;
        if(h2<test_h2) h2 = test_h2;
      }  
    }
    for(x=0;x<box2.length;x++) d.getElementById(box2[x]).style.height = h2 +"px"; //set the height of all divs to the tallest
  }
  ///--><!]]>