function welcomeVideo() {
	if($('welcomeVideo')) {
		var so = new SWFObject("/assets/3022/video.swf", "video_player", "320", "252", "9", "#fff");
		so.addParam("quality", "high");
		so.addParam("wmode", "transparent");
		so.addParam("allowFullScreen", "true");
		so.addParam("autohide","true");
		so.addVariable("pubcode", "rtmp://sas-Flash.OnstreamMedia.com/ondemand/FlashDMSP/undame/carousel/flvs/ministry.flv");
		so.write("welcomeVideo");
	}
}

if (document.observe) {
	document.observe('dom:loaded', function(e) {
		welcomeVideo();
	});
}

if (document.observe) {
	document.observe('dom:loaded', function(e) {
		if($('mailerform')) {
			data = $('mailerform').getElements().collect(function(i){ if(i.name.match(/^data/)) return i.name.replace(/data\[/, '').replace(/\]/, ''); }).compact().uniq();
			h = document.createElement("input");
			h.name = 'ordered_input_names';
			h.type = 'hidden';
			h.value = data;
			$('mailerform').appendChild(h);
			
			$('mailerform').observe('submit', function() {
				$('submit').value = 'submitting...';
				$('submit').disable();
			})
		}
	});
}

