CREATE BOOTABLE SD CARD
Using the Win32DiskImager program
1. Download the distribution from the raspberrypi.org downloads page or from a mirror or torrent. Make sure the distribution is for the Raspberry Pi, as others will not work. Usually these are zipped (compressed) files ending in .zip or .gz (something like "distribution-name.zip").
2. Extract the image file from the downloaded .zip file, so you now have "distribution-name.img".
3. Insert the SD card into your SD card reader and check what drive letter it was assigned. You can easily see the drive letter (for example G

by looking in the left column of Windows Explorer. You can use the SD Card slot (if you have one) or a cheap Adapter in a USB slot.
4. Download the Win32DiskImager utility (it is also a zip file). You can run this from a USB drive.
5. Extract the executable from the zip file and run the Win32DiskImager utility; you may need to run the utility as Administrator! Right-click on the file, and select 'Run as Administrator'
6. Select the image file you extracted above.
7. Select the drive letter of the SD card in the device box. Be careful to select the correct drive; if you get the wrong one you can destroy your data on the computer's hard disk! If you are using an SD Card slot in your computer (if you have one) and can't see the drive in the Win32DiskImager window, try using a cheap Adapter in a USB slot.
8. Click Write and wait for the write to complete.
9. Exit the imager and eject the SD card.
SET TO BOOT TO UI
$ sudo raspi-config
SET STATIC IP
(this can also be don in raspi-config)
The quick way: assign a static IP address to your Pi. This is simple, but runs the risk of clashing IP addresses with other devices on your network since your Pi's address will no longer be managed by DHCP.
You can do this in Debian Squeeze on the Raspberry by modifying the /etc/network/interfaces file.
I removed the original iface eth0 line and replaced it with the following:
iface eth0 inet static
address 192.168.1.222
netmask 255.255.255.0
gateway 192.168.1.1
On reboot, your Pi should now be using the static address specified in /etc/network/interfaces.
INSTALL CHROMIUM
$ sudo apt-get install chromium-browser
SETUP CHROMIUM TO AUTOLOAD WITH GUI
edit /etc/xdg/lxsession/LXDE/autostart and add the following line
@chromium --kiosk --incognito
http://My.Awesome.site.co.za
this is a first pass let me know where you get stuck ?