
	$(function() {

		SetupSlider('#sliderPrezzo', 0, 500000, 10000, '.amountPrezzo','prezzo1','prezzo');



		
	});	
	
	function SetupSlider(sliderId, minimumValue, maximumValue, inStepsOf, inputControlClass,valore,valore1){
		
		$(sliderId).slider({			
			min: minimumValue,
			max: maximumValue,
			step: inStepsOf,
			slide: function(event, ui) {
			valore = ui.value;
			valore = valore + "";
			lunghezza = valore.length;
			if(lunghezza>3){
			differenza = lunghezza- 3;
			valore = valore.substr(valore.legth-3,differenza) + "." + "000"
			}
				$(inputControlClass).val(valore+" €");
			}
		});	
		$(inputControlClass).numeric()
		$(inputControlClass).val($(sliderId).slider("value"));
	SetSliderValue(sliderId, valore1,valore);
				
	}
	
	function SetSliderValue(sliderId, textBoxControl,valore) {
		
		var amount = document.getElementById(valore).value;
		document.getElementById(textBoxControl).value = amount;


		var minimum = $(sliderId).slider("min")
		var maximum = $(sliderId).slider("max")


			$(sliderId).slider('option', 'value', amount);


	
	}	


