$("document").ready(function(){
	
	/*
		Consumption Calculator
		# this plugin will setup the entire calculator for you, but here's
		# your chance to control the output. Below is a reference to all the 
		# options you have the opportunity to change.
		
		@ width: This sets the total with of the calculator div, change it depending on context
		
		@ limit: This is the maximal number of characters allowed in the amount field, change it 
		  if you want to allow the user to calculate larger numbers
		
		@ calc_button_text: This is the text shown on the calculation button
		
		@ recommended_tools_text: This is the text shown in the topic of the recommended links
		
		@ button_background: This will change the background of the calculation button
		  
	
	*/
	
	var config = {
		width: "450px",
		limit: 4,
		calc_button_text: "Beräkna åtgång",
		recommended_tools_text: "Vi rekommenderar",
		button_background: "#e8e8e8",
		input_text: "Mått",
		select_start_value: "Välj konstruktion"
	};
	
	$("#consumption-calculator").consumption(config);
});

