jQuery.fn.displetform.global_config.options = {
	'targetUrl': 'http://dev.displet.com', // no trailing slash
	'searchnow_selector': '#searchnow',
	'columns': 3,

	// Price Select
	'priceMin': 100000,
	'priceMax': 2000000,
	'priceIncrement': 25000,
	'priceMin_label': 'Price',
	'priceMin_select': 'Min',
	'priceMax_label': 'To',
	'priceMax_select': 'Max',

	// min bed select
	'minbed_label': 'Min Beds',
	'minbed_select': 'Beds',
	// min bath select
	'minbath_label': 'Minimum Bath',
	'minbath_select': 'Baths',
	// min sq select
	'minsq_label': 'Min Sq Ft',
	'minsq_select': 'Sq Ft',
	// zip select
	'zip_label': 'Zip',
	'zip_select': 'Zip',
	
	// Area select
	'area_label': 'Area',
	'area_select': 'Select an Area',
'bedsMin': 1,
'bedsMax': 5,

'bathsMin': 1,
'bathsMax': 5
};

jQuery.fn.displetform.global_config.fields = {
	// 'name': 'label',
    //'minBedrooms': 'Min Beds',
	//'minBathrooms': 'Min Bath',
	//'minSquareFeet': 'Min Sq Ft',
	//'zip': 'Zip',
	'subdivision': 'Neighborhood',
    'keyword': 'Keyword'
};

jQuery.fn.displetform.global_config.minbath = {
	// 'Area name': 'Zip, zip, zip, ...'
        '2+': '2',
	'3+': '3',
        '4+': '4',
        '5+': '5'
};

jQuery.fn.displetform.global_config.minbed = {
	// 'Area name': 'Zip, zip, zip, ...'
	'1+': '1',
        '2+': '2',
	'3+': '3',
        '4+': '4',
        '5+': '5'
};

jQuery.fn.displetform.global_config.minsq = {
	// 'Area name': 'Zip, zip, zip, ...'
        '500+': '500',
        '750+': '750',
        '1000+': '1000',
        '1250+': '1250',
        '1500+': '1500',
        '2000+': '2000',
        '2500+': '2500',
        '3000+': '3000',
        '4000+': '4000',
        '5000+': '5000'
};

jQuery.fn.displetform.global_config.zip = {
	// 'Area name': 'Zip, zip, zip, ...'       
        '78701': '78701',
        '78702': '78702',
        '78703': '78703',
        '78704': '78704',
        '78705': '78705',
        '78722': '78722',
        '78723': '78723',
        '78731': '78731',
        '78751': '78751',
        '78752': '78752',
        '78756': '78756',
        '78757': '78757'
        		
};

jQuery.fn.displetform.global_config.areas = {
	// 'Area name': 'Zip, zip, zip, ...'
	'Central Austin': '79',
	'West Austin': '82',	
	'Southwest Austin': '86',
	'North Austin': '83',
	'Northwest Austin': '85',
	'Westlake': '87',
	'Lake Travis South': '89',
	'Lake Travis North': '88',
	'North Suburbs': '90',
	'South Suburbs': '91'
};

// bootstrap
jQuery(function () {
	jQuery('#displetform').displetform();
});
