	function TableCursor(id) {
		var old_color;
	    $(id).each(function(){
		    $(this).bind("mouseenter", function(){
    			old_color = $(this).css('backgroundColor');
	    		$(this).css('backgroundColor', '#DFE6EF');
        	}); 	

		    $(this).bind("mouseleave", function(){
    			if (!old_color) old_color = '#ffffff';
    			$(this).css('backgroundColor', old_color);
	        });
		});
	}



