$(document).ready(function() {
  $(".display_image").hover( function() {
    $imageObject = $(this).
                    parents(".status_table_wrapper").
                    children(".rig_image_wrapper");

    $imageObject.show();
  }, function() {
    $imageObject = $(this).
    				parents(".status_table_wrapper").
    				children(".rig_image_wrapper");

    $imageObject.hide();
  });

  $(".display_comment").hover( function() {
	    $imageObject = $(this).
	                    parents(".status_table_wrapper").
	                    children(".comments_text_wrapper");

	    $imageObject.show();
	  }, function() {
	    $imageObject = $(this).
	    				parents(".status_table_wrapper").
	    				children(".comments_text_wrapper");

	    $imageObject.hide();
	  });
  
  $('span.tooltip_title').cluetip({splitTitle: '|', width: 120});
});
