$(document).ready(function(){
$(".cpt_category_tree ul li").last().addClass('end');
$(".cpt_divisions_navigation ul li").last().addClass('end');
$(".offer ul li").last().addClass('end');
$(".cpt_root_categories ul li").last().addClass('end');
$(".cpt_divisions ul li").last().addClass('end');
$('.param table tbody tr:odd').addClass('odd');
$('.param table tbody tr:even').addClass('even');
$('.noimg a').lightBox({fixedNavigation:true});
var maxHeight = 150;
		$(".cpt_root_categories ul li").each(function(){
			if(maxHeight < $(this).height()){				
				maxHeight = $(this).height();
			}	
			

		});
		$(".cpt_root_categories ul li").css('height', maxHeight+'px' );
var maxHeight = 150;
		$(".offer ul li").each(function(){
			if(maxHeight < $(this).height()){				
				maxHeight = $(this).height();
			}	
			

		});
		$(".offer ul li").css('height', maxHeight+'px' );
var maxHeight = 10;
		$("ul.catt li").each(function(){
			if(maxHeight < $(this).height()){				
				maxHeight = $(this).height();
			}	
			

		});
		$("ul.catt li").css('height', maxHeight+'px' );
});
