var links = $('.rootGroup > .item > .link').each(function(index) {
	var label = $('.text', this).html();
	var drop = 
		label == 'AIR CONDITIONING' ||
		label == 'HEAT PUMPS' ||
		label == 'AIR QUALITY' ||
		label == 'GEOTHERMAL';
	
	if(drop == true) {	
		this.onclick = function() { return false; };
	}
});

