jQuery(document).ready(function ($) {
$('.wrap .page-title-action').after('')
.after('');
$('.im_ex_wpse_settings').unbind('click').click(function () {
tb_show('Import/Export', 'admin.php?page=wpse-import-export&view=profiles&noheader=1TB_iframe=1&width=550&height=400');
});
$('#profile-check-all').unbind('click').click(function () {
$('input[name="profile-id[]"]').prop('checked', this.checked);
});
$('input[name="profile-id[]"]').unbind('click').click(function () {
if (!this.checked) {
$('#profile-check-all').prop('checked', false);
}
});
});