Okay here is what I come up, There will be more elegant way to it. Nonetheless this does you want.
(defun split-windows-even-3 ()
"split into 3 evenly"
(interactive)
(save-excursion
(let ((ps (window-width)))
(split-window-horizontally (/ ps 3))
(other-window 1)
(split-window-horizontally (/ ps 3)))))
;;; ADD HOOKS to startup
;; split three
(add-hook 'emacs-startup-hook 'split-windows-even-3)
;; Fullscreen
(add-hook 'emacs-startup-hook (lambda ()
(set-frame-parameter nil 'fullscreen 'fullboth)))
UPDATE: now its working emacs23 and emacs24