﻿
function blockImageEventBind() {
   $('.showroom_content_block_title_image img').each(function() {
      $(this).css('cursor', 'hand');
      $(this).css('cursor', 'pointer');
      $(this).click(function() {
         $('#showroom_popup_box').show();
         $('#showroom_popup_box_content').empty();

         var target_img_path = $(this).attr('src').replace('_s.', '_l.');
         //     var img = new Image();
         //     img.src = target_img_path;
         //     var width = img.width;
         //     if (width == 0) {
         width = 660;   // set default image width if it failed to get the width.
         //     }
         $('#showroom_popup_box_container').css('width', (width + 30) + 'px');

         $('#showroom_popup_box_content').append(
                 "<img src='" + target_img_path + "' height='270px' alt='' /><div class='showroom_content_block_title_popup'>" + $(this).parent().parent().find('.showroom_content_block_title span').text() + "</div><div class='showroom_content_block_description_pop'>" + $(this).parent().parent().find('.showroom_content_block_description span').html() + "</div>");
      });
   });

   $('.showroom_content_img_plus img').each(function() {
      $(this).css('cursor', 'hand');
      $(this).css('cursor', 'pointer');
      $(this).click(function() {
         $('#showroom_popup_box').show();
         $('#showroom_popup_box_content').empty();

         var target_img_path = $(this).parent().parent().find('.showroom_content_block_title_image img').attr('src').replace('_s.', '_l.');
      //   var img = new Image();
      //   img.src = target_img_path;
      //   var width = img.width;
      //   if (width == 0) {
            width = 660;   // set default image width if it failed to get the width.
      //   }
         $('#showroom_popup_box_container').css('width', (width + 30) + 'px');
         
         $('#showroom_popup_box_content').append(
                 "<img src='" + target_img_path + "' height='270px' alt='' /><div class='showroom_content_block_title_popup'>" + $(this).parent().parent().find('.showroom_content_block_title span').text() + "</div><div class='showroom_content_block_description_pop'>" + $(this).parent().parent().find('.showroom_content_block_description span').html() + "</div>");
      });
   });
}

