var contactus = {
	
	init : function (e){
		
		var button = document.getElementById('contactsubmit');
		
		enable_events.addEvent(button, 'mouseover', rollover.buttonover, false);
		enable_events.addEvent(button, 'mouseout', rollover.buttonout, false);
		enable_events.addEvent(button, 'click', submitcontactform, false);
	}
	
	
	
	
}