Aw man .. its right in the middle of the file!
Code:
# /etc/fstab: static file system information.
#
# -- This file has been automaticly generated by ntfs-config --
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# Entry for /dev/sda7 :
UUID=a92e4b73-b613-4607-bf76-9b2177983e24 / ext2 defaults,errors=remount-ro 0 1
# Entry for /dev/sda1 :
UUID=C4445B1A445B0F14 /media/sda1 ntfs umask=222,utf8,force 0 1
# Entry for /dev/sda3 :
UUID=A0FCAA1BFCA9EC2A /media/sda3 ntfs umask=222,utf8,force 0 1
# Entry for /dev/sda5 :
UUID=705E-3011 /media/sda5 vfat defaults,utf8,umask=007,gid=46 0 1
# Entry for /dev/sda6 :
UUID=536403c8-bb5e-4c58-94ec-532646c2424b none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
Add the bold as shown.
But I wonder why it is ntfs and not ntfs-3g ... Wait I'll have to boot back to Ubuntu and check if its really gone. (Was playing Halo 2

)
Edit:
Ok, so if you are very sure you have installed ntfs-config and have ticked the appropriate options under Applications > System Tools > NTFS Configuration Tool, then change all occurances of ntfs to ntfs-3g in your fstab. Thus your final fstab will look like:
Code:
# /etc/fstab: static file system information.
#
# -- This file has been automaticly generated by ntfs-config --
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# Entry for /dev/sda7 :
UUID=a92e4b73-b613-4607-bf76-9b2177983e24 / ext2 defaults,errors=remount-ro 0 1
# Entry for /dev/sda1 :
UUID=C4445B1A445B0F14 /media/sda1 ntfs-3g umask=222,utf8,force 0 1
# Entry for /dev/sda3 :
UUID=A0FCAA1BFCA9EC2A /media/sda3 ntfs-3g umask=222,utf8,force 0 1
# Entry for /dev/sda5 :
UUID=705E-3011 /media/sda5 vfat defaults,utf8,umask=007,gid=46 0 1
# Entry for /dev/sda6 :
UUID=536403c8-bb5e-4c58-94ec-532646c2424b none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
Changes indicated in bold.