<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>jquery.hoverIntent.js</filename>
    </added>
    <added>
      <filename>line-col.png</filename>
    </added>
    <added>
      <filename>line-row.png</filename>
    </added>
    <added>
      <filename>screenshots/bullseye-col.png</filename>
    </added>
    <added>
      <filename>screenshots/bullseye-hover.png</filename>
    </added>
    <added>
      <filename>screenshots/bullseye-row.png</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -0,0 +1,64 @@
+bullsEye - a jQuery plugin
+
+==============================================================
+
+Author:  Tony Landis
+License: GPL
+Website: http://www.tonylandis.com
+Example: http://tonylandis.com/code-projects/jquery-bullseye/
+		 (Same as the index.html file in the repository)
+Screens: http://tonylandis.com/code-projects/jquery-bullseye/
+		 
+
+==============================================================
+
+This plugin converts a normal table with both row and column 
+level headers to an somewhat interactive format - it is named
+bullsEye because the goal was to create a targeting effect
+when the mouse is being moved on the cells and row and 
+column headings. Maybe something like &quot;cell lines&quot; or 
+&quot;table zoom&quot; would have been more appropriate but I don't
+fell the need to agonize over names.
+
+It was created so that large tables of data can be shown, 
+and as the mouse is moved over the cells, visual effects
+are applied to the table so that the corresponding row
+and column header are highlighted so the current position
+within the table of data is revealed.
+
+It also animates lines from the selected cell to the cell's
+corresponding row and column headers, making the 
+identification of the cell's headers even easier to see.
+
+When moving the mouse over a column or row header, it will
+highlight all intersecting cells and draw the line to them -
+this enables the quick identification of what cells are 
+populated with data, as the application this plugin was
+developed for has intermittent data. 
+
+So for example, if the mouse is moved over a column heading, 
+only the cells in that column that are populated with data 
+will be highlighted and lines will drawn from each those 
+populated cells  to it's row heading for quick visual 
+reference.
+
+The last bit of functionality is to either fade in or zoom 
+in extra data on the cell level that is hidden by default 
+when hovering over a cell. 
+
+The hover content can be HTML formatted and when it is revealed, 
+the div used will automatically center over the selected cell 
+and will be sized to align with total amount of cells 
+configured - for example it can be 3 rows and 5 columns, or 3 
+row and 3 columns. This is visually appealing because the 
+hover content will fit in the existing grid lines.
+
+This is my first jQuery plugin - if anyone finds bugs or has
+usability suggestions let me know. I have tested it in Firefox,
+Opera, and Safari and the behaviors are pretty much identical.
+
+If anyone wants to develop just fork and contact me if you
+have developed something you feel should be merged into 
+this repository.
+
+==============================================================
\ No newline at end of file</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -0,0 +1,108 @@
+div#bullseye {
+	font-size:85%;
+}
+
+div#bullseye th { 
+	border-color:#ccc; 
+	font-weight:900;
+}
+div#bullseye th:hover, div#bullseye .th-sel {
+	color:#fff;
+	background:#333;
+}
+div#bullseye .th-hid {
+	color:#ccc;
+	background:#eee;
+}
+
+div#bullseye th.col {
+	text-align:center; 
+	vertical-align:bottom; 
+	padding:2px;
+	height:26px; 
+	overflow:hidden; 
+	border:1px solid #eee; 
+	border-bottom:1px solid #222;
+	border-top:1px solid #fff;
+	width:50px;
+} 
+div#bullseye th.row {
+	text-align:left;
+	height:20px; 
+	padding:2px; 
+	padding-left:4px; 
+	height:20px; 
+	overflow:hidden; 
+	border:1px solid #eee; 
+	border-right:1px solid #222;
+	border-left:1px solid #fff;
+}
+
+
+div#bullseye td {
+	text-align:center;
+	overflow:hidden; 
+	border:1px solid #ccc;
+	padding:0;
+	margin:0;
+}
+div#bullseye td.no,div#bullseye td.na {background-color:#eee; color:#eee; }
+
+div#bullseye td.hot:hover { 
+	background:#ffffcc;
+	font-weight:900; 
+}
+
+div#bullseye td div.hidden {
+	display:none;
+	position:absolute;
+	border:2px solid #eee;
+	opacity:.9;
+	color:#fff;
+	background-color:#333;
+	font-weight:normal;
+	font-size:78%;
+	margin:0;
+	padding:2px;
+	overflow:auto;
+	z-index:100;
+}
+div#bullseye td div.hidden div {
+	padding:2px;
+	margin-bottom:6px;
+	font-size:125%;
+}
+div#bullseye td div.hidden p {
+	padding:1px;
+	font-size:110%;
+}
+div#bullseye td div.hidden a {color:#fff;}
+div#bullseye td div.hidden div a {
+	color:#ffffcc;
+	font-weight:900;
+}
+
+
+.sv {
+	background-color:#ffffcc;
+	font-weight:900; 
+}
+
+.sh {
+	background-color:#ffffcc;
+	font-weight:900; 
+}
+
+.line-col { 
+	background-image:url('line-col.png');
+	background-repeat:repeat-y;
+	color:#ccc;
+	opacity:.6;
+}
+
+.line-row { 
+	background-image:url('line-row.png');
+	background-repeat:repeat-x;
+	color:#ccc;
+	opacity:.6;
+}
\ No newline at end of file</diff>
      <filename>bullseye.css</filename>
    </modified>
    <modified>
      <diff>@@ -0,0 +1,1038 @@
+&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot;
+	&quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;
+&lt;html&gt;
+&lt;head&gt;
+	&lt;title&gt;jQuery Bullseye Example&lt;/title&gt;
+	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://yui.yahooapis.com/2.7.0/build/reset-fonts-grids/reset-fonts-grids.css&quot;&gt;
+	&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
+		h1 {
+			font-size:130%;
+		}
+	&lt;/style&gt;
+	
+	&lt;link rel=&quot;stylesheet&quot; href=&quot;bullseye.css&quot; type=&quot;text/css&quot;&gt;
+	&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt;   
+	&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.hoverIntent.js&quot;&gt;&lt;/script&gt;
+	&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.bullseye.js&quot;&gt;&lt;/script&gt;
+	&lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;
+		$(document).ready(function(){
+			$('div#bullseye').bullseye({
+				'use_rows':3,
+				'use_cols':3,
+			});	
+		});
+	&lt;/script&gt;
+&lt;/head&gt;
+&lt;body&gt;
+	
+&lt;div id=&quot;doc&quot; class=&quot;yui-t7&quot;&gt;
+&lt;div id=&quot;hd&quot; role=&quot;banner&quot; style=&quot;text-align:center;&quot;&gt;
+	&lt;h1&gt;jQuery bullsEye Plugin Live Example&lt;/h1&gt;	
+&lt;/div&gt;
+
+&lt;div id=&quot;bd&quot; role=&quot;main&quot;&gt;
+&lt;div class=&quot;yui-g&quot;&gt;
+
+&lt;p&gt;&amp;nbsp;&lt;/p&gt;
+&lt;p&gt;&amp;nbsp;&lt;/p&gt;
+	
+
+&lt;!-- bullseye example table # 1 --&gt;
+&lt;div id=&quot;bullseye&quot;&gt;
+	&lt;table&gt;
+		
+		&lt;tr&gt;
+			&lt;th&gt;&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Jan&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Feb&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Mar&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Apr&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;May&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Jun&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Jul&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Aug&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Oct&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Sep&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Nov&lt;/th&gt;
+			&lt;th class=&quot;col&quot;&gt;Dec&lt;/th&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW A --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2009&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A0
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A2
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A3&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A3
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A6
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A8
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for A11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				A11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW B --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2008&lt;/th&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for B1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				B1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for B2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				B2
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for B6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				B6
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for B8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				B8
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for B10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				B10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for B11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				B11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		
+		&lt;!-- ROW C --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2007&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for C0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				C0
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for C1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				C1
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for C3&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				C3
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for C4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				C4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for C5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				C5
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for C8&lt;/div&gt;.
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				C8
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for C9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				C9
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for C10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				C10
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		
+		&lt;!-- ROW D --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2006&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D0
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D2
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D6
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D7&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D7
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D8
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D9
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for D11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				D11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		
+		&lt;!-- ROW  E --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2005&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E0
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E2
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E3&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E3
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E6
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E8
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E9
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for E11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				E11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW  --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2004&lt;/th&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for F1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				F1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for F2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				F2
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for F4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				F4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for F5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				F5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for F6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				F6
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for F8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				F8
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for F9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				F9
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for F11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				F11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW G --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2003&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G0
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G2&lt;/p&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G2
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G3&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G3
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G4
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G6
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G7&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G7
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G8
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for G9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				G9
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW H --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2002&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H0
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H2
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H6
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H8
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H9
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for H11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				H11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW I --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2001&lt;/th&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for I2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				I2
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for I3&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				I3
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for I4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				I4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for I5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				I5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for I6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				I6
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for I7&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				I7
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for I10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				I10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for I11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				I11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW J --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;2000&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J0
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J2
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J3&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J3
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J6
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J8
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J9
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for J11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				J11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW K --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;1999&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K0
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K2
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K3&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K3
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K6
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K7&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K7
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K8
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW L --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;1998&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K0
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K2
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K6
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K7&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K7
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K8&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K8
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K9
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for K11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				K11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+		
+		&lt;!-- ROW L --&gt;
+		&lt;tr&gt;
+			&lt;th class=&quot;row&quot;&gt;1997&lt;/th&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L0&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L0
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L1&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L1
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L2&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L2
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L3&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L3
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L4&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L4
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L5&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L5
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L6&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L6
+			&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;na&quot;&gt;&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L9&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L9
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L10&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L10
+			&lt;/td&gt;
+			&lt;td class=&quot;hot&quot;&gt;
+				&lt;div class=&quot;hidden&quot;&gt;
+					&lt;div&gt;Hover for L11&lt;/div&gt;
+					&lt;p&gt;&lt;a href=&quot;#&quot;&gt;More info&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot;&gt;Another link&lt;/p&gt;
+				&lt;/div&gt;
+				L11
+			&lt;/td&gt;
+		&lt;/tr&gt;
+	&lt;/table&gt;
+&lt;/div&gt;
+
+&lt;p&gt;&amp;nbsp;&lt;/p&gt;
+&lt;p&gt;&amp;nbsp;&lt;/p&gt;
+
+&lt;h1 style=&quot;text-align:center&quot;&gt;
+	bullsEye Screenshots
+&lt;/h1&gt;
+
+&lt;div style=&quot;margin-top:14px;&quot;&gt;
+	&lt;img src=&quot;screenshots/bullseye-col.png&quot;&gt;
+&lt;/div&gt;
+
+&lt;div style=&quot;margin-top:14px;&quot;&gt;
+	&lt;img src=&quot;screenshots/bullseye-row.png&quot;&gt;
+&lt;/div&gt;
+
+&lt;div style=&quot;margin-top:14px;&quot;&gt;
+	&lt;img src=&quot;screenshots/bullseye-hover.png&quot;&gt;
+&lt;/div&gt;
+
+
+
+&lt;/div&gt;
+&lt;/div&gt;
+&lt;div id=&quot;ft&quot; role=&quot;contentinfo&quot;&gt;
+	&lt;p&gt;&amp;nbsp;&lt;/p&gt;
+	&lt;p style=&quot;text-align:center;&quot;&gt;
+		&lt;a href=&quot;http://www.tonylandis.com/&quot; title=&quot;Tony Landis&quot;&gt;Back to tonylandis.com&lt;/a&gt;
+	&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
+
+&lt;/body&gt;
+&lt;/html&gt;
\ No newline at end of file</diff>
      <filename>index.html</filename>
    </modified>
    <modified>
      <diff>@@ -0,0 +1,285 @@
+//
+// bullsEye interactive table jQuery plugin
+//
+(function($) {
+	
+	
+	$.fn.bullseye = function(options) {
+		
+		// override bullseyes's default settings
+		var opts = $.extend({}, $.fn.bullseye.defaults, options);
+		$table = this;
+		
+		// set the private max rows/cols values
+		opts.max_cols = $table.find('th.'+ opts.class_th_col).length - opts.use_cols;
+		opts.max_rows = $table.find('th.'+ opts.class_th_row).length - opts.use_rows;
+		
+		// set cell row/col
+		row=-1;
+		this.find('tr').each(function() {
+			col = 0;
+			$(this).find('td').each(function() {
+				$(this).attr('rel', row + ',' + col);
+				col += 1;
+			});
+			row += 1
+		});
+		
+		// column heading handling, set column number and listeners
+		var col = 0;
+		$table.find('th.'+ opts.class_th_col).each(function() {
+			
+			// set col number for expression lookup later
+			$(this).attr('rel', col);
+			
+			// set column heading listeners
+			$(this).bind('mouseover', function() {
+				var icol = $(this).attr('rel');
+				
+				// loop on all cells
+				$table.find('td[rel$=,'+ icol +']').each(function(){
+					var xy = $.fn.bullseye.get_cell_xy( $(this) );
+					
+					if( $(this).attr('class') == opts.class_td_hot) {
+						// this is a hot cell, highlight it and draw a line to it from the row heading
+						$table.find('th.'+ opts.class_th_row + '[rel='+ xy.row +']').addClass('th-sel'); 
+						$.fn.bullseye.lines_draw_col($table, opts, icol, xy.row);
+					} else {
+						// hidden cell
+						$table.find('th.'+ opts.class_th_row + '[rel='+ xy.row +']').addClass('th-hid');
+					}
+					$(this).addClass('sv');
+				});
+			}).bind('mouseout', function() {
+				$table.find('td.sv').each(function(){
+					$(this).removeClass('sv');
+				});
+				$table.find('th.'+ opts.class_th_row).each(function() {
+					$(this).removeClass('th-sel').removeClass('th-hid');
+				});
+				$.fn.bullseye.lines_clear($table);
+			});
+			col += 1;
+		});
+		
+		
+		
+		
+		// row heading handling, set row number and listeners
+		var row = 0;
+		$table.find('th.'+ opts.class_th_row ).each(function() {
+			
+			// set col number for expression lookup later
+			$(this).attr('rel', row);
+			
+			// set column heading listeners
+			$(this).bind('mouseover', function() {
+				var irow = $(this).attr('rel');
+				
+				// loop on all cells
+				$table.find('td[rel^='+ irow +',]').each(function(){
+					var xy = $.fn.bullseye.get_cell_xy( $(this) );
+					if( $(this).attr('class') == opts.class_td_hot) {
+						// this is a hot cell, highlight it and draw a line to it from the row heading
+						$table.find('th.'+ opts.class_th_col + '[rel='+ xy.col +']').addClass('th-sel'); 
+						$.fn.bullseye.lines_draw_row($table, opts, irow, xy.col);
+					} else {
+						// hidden cell
+						$table.find('th.'+ opts.class_th_col + '[rel='+ xy.col +']').addClass('th-hid');
+					}
+					$(this).addClass('sv');
+				});
+			}).bind('mouseout', function() {
+				$table.find('td.sv').each(function(){
+					$(this).removeClass('sv');
+				});
+				$table.find('th.'+ opts.class_th_col).each(function() {
+					$(this).removeClass('th-sel').removeClass('th-hid');
+				});
+				$.fn.bullseye.lines_clear($table);
+			});
+			row += 1;
+		});
+
+
+
+		// set cell-level listeners
+		return this.find('td.' + opts.class_td_hot).each(function() {
+		
+			$cell = $(this);
+			var xy = $.fn.bullseye.get_cell_xy($cell);
+			
+			$cell.bind('mouseover', function() {
+				// add the selected class to this cell's column and row headings
+				$table.find('th.'+ opts.class_th_col + '[rel='+ xy.col +']').addClass('th-sel');
+				$table.find('th.'+ opts.class_th_row + '[rel='+ xy.row +']').addClass('th-sel');
+				// draw the lines from this cell's column and row headings to this cell
+				$.fn.bullseye.lines_draw_row($table, opts, xy.row, xy.col);
+				$.fn.bullseye.lines_draw_col($table, opts, xy.col, xy.row);
+			}).bind('mouseout', function() {
+				// remove the selected class from this cell's column and row headings
+				$table.find('th.'+ opts.class_th_col + '[rel='+ xy.col +']').each(function() { $(this).removeClass('th-sel') });
+				$table.find('th.'+ opts.class_th_row + '[rel='+ xy.row +']').each(function() { $(this).removeClass('th-sel') });
+				// clear the lines to this cell
+				$.fn.bullseye.lines_clear($table);
+			});
+			
+			// Conditional hover action
+			// Enable with {'cellhover':true}
+			// Requires Brian Cherne's excellent hoverIntent class: http://cherne.net/brian/resources/jquery.hoverIntent.html
+			if (opts.cell_hover == true)
+			{
+				$cell.hoverIntent({
+					sensitivity: opts.cell_hover_sensitivity, 
+					interval: opts.cell_hover_interval,
+					over: function(e) {
+							child = $(this).children(&quot;:first&quot;)[0];
+							$.fn.bullseye.set_hover_position($table, opts, this, child);
+						},
+					out: function(e) {
+							var child = $(this).children(&quot;:first&quot;)[0];
+							var pos = $(this).position();
+							$(child).stop().fadeOut('slow');
+						}
+					}
+				);
+			}
+				
+		});
+	};
+	 
+	
+	// 
+	$.fn.bullseye.set_hover_position = function(table, opts, parent, child)
+	{ 	
+		xy = $.fn.bullseye.get_cell_xy(parent);
+		var row = xy.row
+		var col = xy.col
+		
+		// determine start col
+		start_col = col - ( (opts.use_cols-1) / 2 );
+		while ( start_col &lt; 0 ) start_col += 1; 
+		if( start_col &gt;= opts.max_cols) start_col = opts.max_cols;
+		end_col = start_col + opts.use_cols-1;
+		 
+		// determine start row 
+		start_row = row - ( (opts.use_rows-1) / 2 );
+		while ( start_row &lt; 0 ) start_row += 1;
+		if( start_row &gt;= opts.max_rows) start_row = opts.max_rows;
+		end_row = start_row + opts.use_rows-1;
+		 
+		// get the start row,col cell
+		var start = table.find('td[rel='+start_row+','+start_col+']')[0];
+		var start_pos = $(start).position();
+		
+		// get the end row,col
+		var end =  table.find('td[rel='+end_row+','+end_col+']')[0];
+		var end_pos = $(end).position();
+		
+		if (opts.cell_hover_effect == 'zoom')
+		{
+			// zoom in the cell hover content
+			var pos = $(parent).position();
+			$(child).css({  
+				'top': pos.top,
+				'left': pos.left,
+				'height': parent.scrollHeight  + 'px',
+				'width': parent.scrollWidth  + 'px',
+				'opacity': .95
+			});
+			$(child).animate({  
+				'top': start_pos.top,
+				'left': start_pos.left,
+				'margin-top': '-2px',
+				'margin-left': '-2px',
+				'height': (end_pos.top - start_pos.top  + (end.scrollHeight - 10)) +'px',
+				'width':  (end_pos.left - start_pos.left + (end.scrollWidth - 10)) +'px'
+			});
+
+		} 
+		else if (opts.cell_hover_effect == 'fade') 
+		{
+			// fade in the cell hover content
+			$(child).css({
+		 		'top': start_pos.top,
+				'left': start_pos.left,
+				'height': (end_pos.top - start_pos.top  + (end.scrollHeight - 10)) +'px',
+				'width':  (end_pos.left - start_pos.left + (end.scrollWidth - 10)) +'px'
+			}).fadeIn();
+		
+		} else {
+			// error
+		}
+		
+	};
+	
+	
+	// get the row/col of the selected cell
+	$.fn.bullseye.get_cell_xy = function(cell) {
+		var s =  $(cell).attr('rel').split(',');
+		return {
+			'row': s[0], 
+			'col': s[1]
+		}
+	};
+	
+	// draw horizontal lines
+	$.fn.bullseye.lines_draw_row = function(table, opts, row, col) {
+		
+		// get the height of this row
+		var parent = table.find('th.' + opts.class_th_row)[0];
+		var width = parent.clientWidth;
+		var height = parent.clientHeight;
+		var center = width/2;
+		  
+		var count = 0; 
+		table.find('td[rel$=,'+col+']').each(function(){
+			if (count &lt; row) { 
+				$(this).addClass(&quot;line-col&quot;); 
+			}
+			count++;
+		});
+	}
+	
+	// draw vertical lines
+	$.fn.bullseye.lines_draw_col = function(table, opts, col, row) {
+		var count = 0; 
+		table.find('td[rel^='+row+'],').each(function(){
+			if (count &lt; col) $(this).addClass(&quot;line-row&quot;);
+			count++;
+		});
+	}
+	
+	// clear all lines
+	$.fn.bullseye.lines_clear = function (table) {
+		table.find('td[class*=line]').each(function(){
+			$(this).removeClass(&quot;line-col&quot;);
+			$(this).removeClass(&quot;line-row&quot;);
+		});
+	}
+	
+	
+ 	//
+	// bullseye default settings
+	//
+	$.fn.bullseye.defaults = {
+		
+		// cell hover settings
+		'cell_hover': true,				// (true|false) enable/disable cell level display of extra content on mouseover
+		'cell_hover_effect': 'fade', 	// (fade|zoom) the effect to use when showing/hiding the extra content
+		'cell_hover_sensitivity':1,		// (int) passed directly to hoverIntent
+		'cell_hover_interval':120,		// (int) passed directly to hoverIntent
+		'use_cols':3,					// (an uneven number &gt;= 3) how many columns to span
+		'use_rows':5,					// (an uneven number &gt;= 3) how many rows to span
+
+		// class names
+		'class_td_hot': 'hot',
+		'class_th_row': 'row',
+		'class_th_col': 'col',
+
+		// private
+		'max_rows':0,
+		'max_cols':0,
+	};
+	
+}) (jQuery);
\ No newline at end of file</diff>
      <filename>jquery.bullseye.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>d55b35daf08b8940113fa3331f8938017e10797a</id>
    </parent>
  </parents>
  <author>
    <name>Tony Landis</name>
    <email>tony.landis@gmail.com</email>
  </author>
  <url>http://github.com/tony-landis/jQuery-bullsEye/commit/d65d7aaa914a744789cebef53938fdf5e2e208a4</url>
  <id>d65d7aaa914a744789cebef53938fdf5e2e208a4</id>
  <committed-date>2009-06-09T18:04:40-07:00</committed-date>
  <authored-date>2009-06-09T18:04:40-07:00</authored-date>
  <message>First Commit</message>
  <tree>5e83331df5ca9fb8d5e85231aa40bb888f094c13</tree>
  <committer>
    <name>Tony Landis</name>
    <email>tony.landis@gmail.com</email>
  </committer>
</commit>
