
$(document).ready(function(){

    $('.product_list li').eq(3).after('<br class="clear" /><div class="clear clear_front"></div>');	
    
    if ($('.product_list').length) {
        get_spec();
    }
    
    if ($('#category').length) {
        get_brief();
    }
    
});

$(window).resize(function(){	

    if ($('.product_list').length) {
        get_spec();
    }
    
    if ($('#category').length) {
        get_brief();
    }
    
});

function get_spec() {
	var height = $('.product_list li:first').height();
    $('.product_list li').each(function(i){ 
        if ($(this).height()>height) height = $(this).height();
    }); 
    $('.product_list li').each(function(i){ 
        $(this).css({ height: height });
    });       
}

function get_brief() {   
    $('#category tr').each(function(i){ 
        var height = $(this).find('.bg').eq(0).height();  
        //alert(height);      
        $(this).find('.bg').each(function(i){            
            if ($(this).height()>height) height = $(this).height();            
        }); 
        //alert(height);
        $(this).find('.bg').each(function(i){ 
            $(this).css({ height: height });            
        });       
    });      
}