Ext.ns('DJIndexes.Brookfield');

DJIndexes.Brookfield.Contact = function() {
	
	var container = 'contact-form';
	
	function _init() {
		
		if ( Ext.get(container) ) {
			new DJIndexes.widget.ContactForm(container,{
				hiddenFields: [
					{ xtype: 'hidden', name: 'subject', value: 'DJ-Brookfield Infrastructure Indexes' }
				],
				additionalParams: [
					{ name: '00N60000001N3cm', value: 'DJ-Brookfield Contact Form' }
				]
			});
		}
		
	}
	
	return {
		init: _init
	}
	
}();
Ext.onReady(DJIndexes.Brookfield.Contact.init, DJIndexes.Brookfield.Contact);