// this file represents our virtual filesystem
Fwd.vfs = {
	'bin' : {
		apply 					: Fwd.File('/bin/newuser.js' ),
		cat 						: Fwd.File('/bin/cat.js' ),
		cd	 						: Fwd.File('/bin/cd.js'),
		clear 					: Fwd.File('/bin/clear.js'),
		echo 						: Fwd.File('/bin/echo.js'),
		grep 						: Fwd.File('/bin/grep.js'),
		help 						: Fwd.File("/bin/help.js"),
		history					: Fwd.File("/bin/history.js"),
		ls 							: Fwd.File('/bin/ls.js'),
		newuser					: Fwd.File('/bin/newuser.js'),
		open						: Fwd.File('/bin/open.js'),
		pwd 						: Fwd.File('/bin/pwd.js'),
		tour						: Fwd.File('/bin/tour.js'),
		commandMissing 	: function() { STDOUT += "-fwd: "+ARGV[0]+": command not found!"; }
	},
	
	'etc' : {
		'help.txt' : Fwd.File('/etc/help.txt'),
		'welcome.txt' : Fwd.File('/etc/welcome.txt'),
		'versions.txt' : Fwd.File('/etc/versions.txt'),
		'tour' : {
			'intro.txt' : Fwd.File('/etc/tour/intro.txt')
		}
	},

	'home' : {
		'guest' : {
			'README': Fwd.File('/home/guest/README'),
			'about_us.txt': Fwd.File('/home/guest/about_us.txt'),
			'team.xml':  Fwd.File('/home/guest/team.xml'),
			'approach': {
				'agile.txt': Fwd.File('/home/guest/approach/agile.txt'),
				'OMDA.txt': Fwd.File('/home/guest/approach/OMDA.txt'), 
				'ten_percent.txt': Fwd.File('/home/guest/approach/ten_percent.txt')
			},
			'careers': {
				'vacancies.txt': Fwd.File('/home/guest/careers/vacancies.txt'),
				'why_us.txt': Fwd.File('/home/guest/careers/why_us.txt')
			},
			'projects': {
				'I3.txt': Fwd.File('/home/guest/projects/I3.txt'),
				'omio.txt': Fwd.File('/home/guest/projects/omio.txt'),
				'texter.txt': Fwd.File('/home/guest/projects/texter.txt')
			}
		}
	}
}