$(document).ready(function(){
	$(".tbl_bdtr").mouseover(function(){
		$(this).css({background:"#F1F3F5", border:"1px solid #ccc"})
	});
	$(".tbl_bdtr").mouseout(function(){
	 $(this).css({background:"#fff", border:"0px"})
	});
});//end document ready
