
 cssQuery('tr.bgit').each(function(e){
		e.onmouseover = function(){
			cssQuery('td',e).each(function(el){
				//if(el.hasClassName('exempt')){
				
				//} else {
				
				orcolor  = el.bgColor ;
				el.bgColor = '#9FE8FF';
			 	el.setAttribute("bgColor","#EFEFEF");
				//}
			});
		}
	});
 
 cssQuery('tr.bgit').each(function(e){	
			e.onmouseout = function(){
				cssQuery('td',e).each(function(el){		
				
					if(el.hasAttribute('rel')){
						el.bgColor = "#ccc";
						 
					}  else {
						el.bgColor = '#FFFFFF';		
					}
						
					 
				});
			}
		});
