To store files you can use the image data type, which holds binary data. Because you're storing the actual binary file, you can't then search through the text of the document.
Another option is to store the files in a certain folder on the hard drive and use a varchar field in the DB to just store the path/filename.
--James