var path = "/";

jQuery(function(){
    jQuery(".box_compare_0, .box_compare_1").click(function(){
        var id = jQuery(this).attr("href").split("_")[1];
        
        jQuery(this).toggleClass("box_compare_0");
        jQuery(this).toggleClass("box_compare_1");
        
        jQuery.post(
          path + 'cat/',
          { add_to_compare : 1, id : id, status : jQuery(this).hasClass("box_compare_1") ? 1 : 0 }
        );
    });
});
