jQuery.fn.displetform.global_config.options = {
	'targetUrl': 'http://search.lifeinsteiner.com', // no trailing slash
	'searchnow_selector': '#searchnow',
	'columns': 2,

	// Price Select
	'priceMin': 200000,
	'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': 'Min Bath',
	'minbath_select': 'Baths',
	// min sq select
	'minsq_label': 'Min Sq Ft',
	'minsq_select': 'Sq Ft',
};

jQuery.fn.displetform.global_config.fields = {
	'keyword': 'Keywords'
};

jQuery.fn.displetform.global_config.minbath = {
	'2+': '2',
	'3+': '3',
	'4+': '4'
};

jQuery.fn.displetform.global_config.minbed = {
	'3+': '3',
	'4+': '4',
	'5+': '5',
	'6+': '6'
};

jQuery.fn.displetform.global_config.minsq = {
        '1500+': '1500',
        '1750+': '1750',
        '2000+': '2000',
        '2500+': '2500',
        '3000+': '3000',
        '3500+': '3500',
        '4000+': '4000',
        '5000+': '5000'
};

// bootstrap
jQuery(function () {
	jQuery('#displetform').displetform();
});
