// Page
$.ui.page.subclass('ui.contactus_page', {
	_init: function() {
		this.createForm();
	}, 
	createForm: function() {
		this.form = this.getBodyObject('#contactus_form').form();
	}
});
/********* Init *********/
$(document).ready(function() {
	$('.page').contactus_page();
});