Trying to limit the total quantity of items allowed to be added to 4, this function alerts first time but still adds items to the cart.
simpleCart.bind( 'beforeAdd' , function( item ){
if(simpleCart.quantity() === 4 ){
alert("You can only compare 4 items.");
return false;
}
});