$(document).ready(function() {
	

	$('#main_table tbody tr td').mouseover(function() {
		$(this).find('.admin').show();
	});
	$('#main_table tbody tr td').mouseout(function() {
		$(this).find('.admin').hide();
	});
	
});
