$(document).ready(function() {
    $('#cartshow').live('click', function(event) {
      $('#details').show( 400, function(){
          $('#details').css("min-height","96px");
          $('#cartshow').hide(0, function(event) {
            $('#carthide').show( 0 );  
          });     
       });
    });
    $('#carthide').live('click', function(event) {
       $('#details').css("min-height","0px").hide( 400, function(){         
          $('#carthide').hide( 0, function(event) {
            $('#cartshow').show( 0 );  
          });     
       });
    });
});
