@Description: Cleans a filename up making it safe for upload, removes spaces, swicthes to camelStyle and strips extraneos punctuation
@File: String/prototype/cleanFileName.js
@Author: Paul Visco
@Version: 1.0 11/19/07
@Return: String The original string but replaces breaks with actual new lines
@Example:var myString = 'hello there,, file . jpg';
var newString = myString.cleanFileName();
//newString = 'helloThereFile.jpg'