Display different custom post type each week

You can use PHP’s date functionality:

// set (or retrieve) the number of menus
$num_menus = 2;
// calculate the current/next menu according to the current/next week (number)
$current_menu = date('W') % $num_menus;
$next_menu = (date('W') + 1) % $num_menus;

All you have to do then, is to map the numbers to the according menus (i.e., custom post types).