window.addEvent('domready', function() {
	var myScrollbar = new UvumiScrollbar('scrollable');	
	//new UvumiDropdown('main_nav');
	new UvumiDropdown('port_menu');
	
	var myForm = $('myForm');
	var loaderImg = $('statusimg');
	
	loaderImg.setStyle('opacity',"0");
	loaderImg.set('tween', {duration: 500, transition: Fx.Transitions.Cubic.easeOut});
	
	myForm.set('send', {
	     //url: 'dmsubmit.php', 
	     method: 'post',
	     
	     onRequest: function(){
			loaderImg.tween('opacity',1);
			$('statustext').set('html', "Sending...");
		},
		onSuccess: function(responseText, responseXML){
			$('statustext').set('html', responseText);
			loaderImg.tween('opacity',0);
			myForm.reset();
		},
		onFailure: function(){
			loaderImg.tween('opacity',0);
			alert("Email failed to send.  Please try again soon.");
		}
	});
	
	$('mySubmit').addEvent( 'click', function(event){
		// Stops the submission of the form.
		event.stop();
	
		// Sends the form to the action path,
		myForm.send();
	} );
	
});


