Boot from your ArchLinux live cd again and in a command prompt as root run the exact following.
mkdir /mnt/root
mount /dev/sda3 /mnt/root
mount /dev/sda1 /mnt/root/boot
chroot /mnt/root
mount /proc
grub-install --recheck --no-floppy /dev/sda
umount /proc
exit
umount /mnt/root/boot
umount /mnt/root
reboot
Depending on what you did trying to setup autofs, you might want to check that  /etc/fstab or /boot/grub/menu.lst files are valid while you are chrooted in your system (after mount /proc above).
 
                