$j(document).ready(function() {
	
    $j(".categories_low_height").hover(
      function () {
      	if($j(".categories_low_height").parent().parent().text().length > 200){
        //if($j(this).text().length > 72){
        	$j(this).parent().parent().parent().css("overflow","visible");
        	$j(this).css("z-index", "20")
            $j(this).addClass("categories_low_height_hover");
        }
      }, 
      function () {
        $j(this).removeClass("categories_low_height_hover");
        $j(".product").css("overflow","hidden");
        $j(this).css("z-index", "1")
      }
    );


});


