Добрый день!
Помогите навесить несколько функций на событие
Пробовал так 
<script type="text/javascript">
    function init(){
        startTimer();
        startSecund();
        startTimerTorgStart();
	};
</script>
<body onLoad="init()">
и так 
<script type="text/javascript">
    function addEvent(elem, type, handler){
	  if (elem.addEventListener){
	    elem.addEventListener(type, handler, false)
	  } else {
	    elem.attachEvent("on"+type, handler);
	  }
	} 
    function init(){
	  addEvent('body','load',startTimer());
	  addEvent('body','load',startSecund());
	  addEvent('body','load',startTimerTorgStart());
	};
</script>
<body onLoad="init()">
В 1-м случае функции не срабатывают, во 2-м срабатывает только одна