jQuery(document).ready(function() { 
	function addkwhinput(tmpkwh) {
		jQuery('#jahresverbrauch-strom').val(tmpkwh);
	} 

	jQuery('img.kwh1500, img.kwh2500, img.kwh3000, img.kwh4000, img.kwh5000').hover(function(){ 
		jQuery(this).css('cursor','pointer');
	},function(){ 
		jQuery(this).css('cursor','default');
	});

	jQuery('.kwhselect img.kwh1500').click(function(){
		addkwhinput(1500);
	});
	
	jQuery('.kwhselect img.kwh2500').click(function(){
		addkwhinput(2500);
	});
	
	jQuery('.kwhselect img.kwh3000').click(function(){
		addkwhinput(3000);
	});
	
	jQuery('.kwhselect img.kwh4000').click(function(){
		addkwhinput(4000);
	});
	
	jQuery('.kwhselect img.kwh5000').click(function(){
		addkwhinput(5000);
	});
});
