var padsQuickSearch = {
	beds_fieldset : null,
	beds_labels   : null,
	beds_inputs   : null,
	
	addHandlers : function() {
		this.beds_labels.each(function(item) {
			item.onclick = function(e) {
				this.clearSelectedOptions();
				item.addClassName('selected');
				var radioSelected = $(item.htmlFor);
				radioSelected.checked = true;
			}.bind(this);
	 	}.bind(this));
	}
	,init : function() {
		this.beds_fieldset = $('stu-bedrooms');
		this.beds_labels = $$('#stu-bedrooms label');
		this.beds_inputs = $$('#stu-bedrooms input');
		
		this.addHandlers();
	}
	,clearSelectedOptions : function() {
		this.beds_labels.each(function(item) {
			item.removeClassName('selected');
			var radioSelected = $(item.htmlFor);
			radioSelected.checked = false;
	 	});
	}
};
Event.observe(window,'load',this.padsQuickSearch.init.bind(this.padsQuickSearch));