If you put grub on the master disk and PCLos is on the master disk on partition 2 (hda2) it is (hd0,1) for the sake of argument with swap on partition 3 (hda3)
title 2.6.26.8.tex3
kernel (hd0,1)/boot/vmlinuz-2.6.26.8.tex3 BOOT_IMAGE=2.6.26.8.tex3 root=/dev/hda2 acpi=on resume=/dev/hda3 splash=silent vga=788
initrd (hd0,1)/boot/initrd-2.6.26.8.tex3.img
Now we take this disk to slave and another one to master.
We use this new disk for another linux install with a new grub and menu list.
To start PCLos on the second drive we have to add
title 2.6.26.8.tex3
kernel (hd1,1)/boot/vmlinuz-2.6.26.8.tex3 BOOT_IMAGE=2.6.26.8.tex3 root=/dev/hdb2 acpi=on resume=/dev/hdb3 splash=silent vga=788
initrd (hd1,1)/boot/initrd-2.6.26.8.tex3.img
to the new menu.lst
In case of UUID it is for one disk
title 2.6.26.8.tex3
kernel (hd0,1)/boot/vmlinuz-2.6.26.8.tex3 BOOT_IMAGE=2.6.26.8.tex3 root=UUID=a1a74e10-9c73-418c-88e6-8659ede37838 acpi=on resume=UUID=eb2996c5-3be0-4487-9763-b25c4d54102b splash=silent vga=788
initrd (hd0,1)/boot/initrd-2.6.26.8.tex3.img
Add on the new menu.lst
title 2.6.26.8.tex3
kernel (hd1,1)/boot/vmlinuz-2.6.26.8.tex3 BOOT_IMAGE=2.6.26.8.tex3 root=UUID=a1a74e10-9c73-418c-88e6-8659ede37838 acpi=on resume=UUID=eb2996c5-3be0-4487-9763-b25c4d54102b splash=silent vga=788
initrd (hd1,1)/boot/initrd-2.6.26.8.tex3.img
With UUID we do not need any change for the partition ID
Now for the weirdness we tell the BIOS to boot from the slave disk
title 2.6.26.8.tex3
kernel (hd0,1)/boot/vmlinuz-2.6.26.8.tex3 BOOT_IMAGE=2.6.26.8.tex3 root=/dev/hdb2 acpi=on resume=/dev/hdb3 splash=silent vga=788
initrd (hd0,1)/boot/initrd-2.6.26.8.tex3.img
or
title 2.6.26.8.tex3
kernel (hd0,1)/boot/vmlinuz-2.6.26.8.tex3 BOOT_IMAGE=2.6.26.8.tex3 root=UUID=a1a74e10-9c73-418c-88e6-8659ede37838 acpi=on resume=UUID=eb2996c5-3be0-4487-9763-b25c4d54102b splash=silent vga=788
initrd (hd0,1)/boot/initrd-2.6.26.8.tex3.img
And DO NOT FORGET /etc/fstab from the Linux you want to start, no problem if you use UUID.
And now sit for an examination, I change my disks some times, part of my menu.lst, copied on al disk's
If it's on the wrong disk I have no graphics but a text menu,
PCLos will start up 
if it is on one of the 3 HDD's, even if it's the only disk.
timeout 5
color light-gray/red red/light-gray
gfxmenu (hd1,4)/boot/gfxmenu
default 0
fallback 1 2
title 2.6.27.29.tex1
kernel (hd1,4)/boot/vmlinuz-2.6.27.29.tex1 BOOT_IMAGE=2.6.27.29.tex1 root=UUID=a1a74e10-9c73-418c-88e6-8659ede37838 acpi=on resume=UUID=eb2996c5-3be0-4487-9763-b25c4d54102b splash=silent vga=788
initrd (hd1,4)/boot/initrd-2.6.27.29.tex1.img
title 2.6.27.29.tex1
kernel (hd2,4)/boot/vmlinuz-2.6.27.29.tex1 BOOT_IMAGE=2.6.27.29.tex1 root=UUID=a1a74e10-9c73-418c-88e6-8659ede37838 acpi=on resume=UUID=eb2996c5-3be0-4487-9763-b25c4d54102b splash=silent vga=788
initrd (hd2,4)/boot/initrd-2.6.27.29.tex1.img
title 2.6.27.29.tex1
kernel (hd0,4)/boot/vmlinuz-2.6.27.29.tex1 BOOT_IMAGE=2.6.27.29.tex1 root=UUID=a1a74e10-9c73-418c-88e6-8659ede37838 acpi=on resume=UUID=eb2996c5-3be0-4487-9763-b25c4d54102b splash=silent vga=788
initrd (hd0,4)/boot/initrd-2.6.27.29.tex1.img
Hope you learned your lessons from today

Ed