if (location.href.indexOf("?incart=1") != -1){
	jQuery('#logolink').css("display","none");
	jQuery('#toplinks').css("display","none");
	jQuery('#myAccountLinks').css("display","none");
	jQuery('#searchline').css("display","none");
	jQuery('#topnav').css("display","none");
	jQuery('#bottomline').css("display","none");
	jQuery('#leftcell').css("display","none");
	jQuery('#breadcrumbsline').css("display","none");
	jQuery('#topThinLine').css("display","none");
	jQuery('#leftCellTop').css("display","none");
	jQuery('#main').css('cssText', 'padding-top: 0px !important');
}    

$(document).ready(function(){
  $(".ctr").each(function(){
      // find the tallest title
      var maxh = 0;
      $(this).find(".imCell").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".imCell").height(maxh);

      var maxh = 0;
      $(this).find(".title").each(function() {
          if ($(this).height() > maxh)
             maxh = $(this).height();
      });
      $(this).find(".title").height(maxh);
  });
})
