FE_Home = {};

FE_Home.handleRepReviewClick = function() {
  $(this).bt({
    ajaxPath: $(this).attr('href'),
    width: '250px',
    ajaxCache: true
  }).btOn();
  H.setBt($(this));
  return false;
}

FE_Home.handleViewProductClick = function() {
  $(this).bt({
    ajaxPath: $(this).attr('href'),
    width: '420px',
    ajaxCache: true
  }).btOn();
  H.setBt($(this));
  return false;
}

FE_Home.handleViewProductCloseClick = function() {
  H.clearBt();
}

FE_Home.ready = function() {
  $('.rep_review_link').click(FE_Home.handleRepReviewClick);
  $('.product_details, .product_image_link, .product_add_with_variants').click(FE_Home.handleViewProductClick);
  $('#product_view').live('click',FE_Home.handleViewProductCloseClick);
}

