$(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 );  
          });     
       });
    });


});

$(document).ready(function() {
  content_height = $('#content').height();
  left_height = $('#left_column').height();
  if ( content_height > left_height ) {
    $('#content').addClass('relative');
    $('#left_column').addClass('absolute');
  } else {
    $('#content').removeClass('relative');
    $('#left_column').removeClass('absolute');
  }
});

