$(document).ready(function() {
	
	
	/* Количество комнат */
	$('.b-form-addnotice .count-rooms INPUT').numeric();
	$('.b-form-addnotice .count-rooms INPUT').val(1);
	$('.b-form-addnotice .count-rooms .slider').slider({
		animate: true,
		max: 6,
		min: 1,
		orientation: 'horizontal',
		value: 1,
		slide: function(event, ui) {
					$('.b-form-addnotice .count-rooms INPUT').val(ui.value);
				}
	});
	$('.b-form-addnotice .count-rooms INPUT').change(function(){
		var old = $('.b-form-addnotice .count-rooms .slider').slider('value');
		var cur = ($(this).val())*1;
		if (isNaN(cur) || (cur==0)) cur = old;
		$(this).val(cur);
		$('.b-form-addnotice .count-rooms .slider').slider('value', $(this).val());
	});
	
	
});