$(document).ready(function(){
/* rows color interchange */						   
  $(".table tr").filter(":odd").addClass(" odd");
  $(".table tr").filter(":even").addClass(" even");
/* /rows color interchange */

/* hover emulation for IE6 */  
  if($.browser.msie && jQuery.browser.version < "7.0"){
    $(".for-hover").hover(
      function () {
        $(this).addClass(" hover");
      }, 
      function () {
        $(this).removeClass(" hover");
      }
    );
  }
/* /hover emulation for IE6 */

var lm = $("#left-menu");
var lm_ul = $("#left-menu-ul");
var c = $("#content-in");
/*
alert(lm.outerHeight());
alert(c.outerHeight());
*/
if(lm.outerHeight() < c.outerHeight()){
   lm_ul.height(c.outerHeight() - 187);
   };

});


