var newClass = function() {
	return function() {
		return this.init.apply(this, arguments);
	}
}

var TableNav = newClass();

TableNav.prototype = {

  init: function() {
	 var t = this;	
	 
	
	$(".CalendarFull tr").mouseover(function() {
      $(this).addClass("NavTrCF");
    });
	
	$(".CalendarFull tr").mouseout(function() {
      $(this).removeClass("NavTrCF");
    });
	
	$(".BodyBlockRR tr").mouseover(function() {
      $(this).addClass("BlockRRSel");
    });
	
	$(".BodyBlockRR tr").mouseout(function() {
      $(this).removeClass("BlockRRSel");
    });
	
 }

};

$(document).ready(function(){
	new	TableNav();
});
