How to Hide the "Crazy Egg" Admin Menu

function plt_hide_crazyegg_heatmap_tracking_menus() {
	//Hide the "Crazy Egg" menu.
	remove_menu_page('crazyegg-heatmap-tracking');
}

add_action('admin_menu', 'plt_hide_crazyegg_heatmap_tracking_menus', 11);

Where do I put this code?