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