$.fn.tablegrid=function(a){var b={oddColor:'#E0EFFA',evenColor:'#F2F9FD',overColor:'#BBDDEE',selColor:'#FFCC99',useClick:false};$.extend(b,a);$(this).each(function(){$(this).find('tr:odd > td').css('backgroundColor',b.oddColor);$(this).find('tr:even > td').css('backgroundColor',b.evenColor);$(this).find('tr').each(function(){this.origColor=$(this).find('td').css('backgroundColor');this.clicked=false;if(b.useClick){$(this).click(function(){if(this.clicked){$(this).find('td').css('backgroundColor',this.origColor);this.clicked=false}else{$(this).find('td').css('backgroundColor',b.selColor);this.clicked=true}$(this).find('td > input[type=checkbox]').attr('checked',this.clicked)})}$(this).mouseover(function(){$(this).find('td').css('backgroundColor',b.overColor)});$(this).mouseout(function(){if(this.clicked){$(this).find('td').css('backgroundColor',b.selColor)}else{$(this).find('td').css('backgroundColor',this.origColor)}})})})};
