$(document).ready(function(){
	$(".cell_cover").hover(
		function(){ $(this).addClass("cell-sel") },
		function(){ $(this).removeClass("cell-sel") }
	);
});