//var $J = jQuery.noConflict();
jQuery(document).ready(function(){

    $(".corner").corner('10px');
	$(".b_corner").corner('bottom 20px');
	
    $(".menu_left li:last").css({border: "none"});
    
    //odinakovaya vysota blokov v kataloge
    $(window).load(function(){
        $(".float_block:even").each(function(){
            if ($(this).next().hasClass("float_block"))
            {
                if ($(this).height() < $(this).next().height())
                {
                    $(this).height($(this).next().height());
                }
                else
                {
                    $(this).next().height($(this).height());
                }
            }
        });
    });
});

