document.observe('dom:loaded', function(){
	var buildPager = function(){
    	p = new MultiPager($('steps'), 10, {next:$('btn_next'),prev:$('btn_prev'), width:320});
	};
	
	var ie = Prototype.Browser.IE;
	
	if (! ie)
        buildPager();	
	
	$$('#module_process .step').each(function(el) {
		new ProcessAnimator(el);
	});
	
	if (ie)
	   buildPager();
	
});

