// $(document).ready(function(){
// 	var items = {};
// 	items.betriebe = new Array();
// 	
// 	$('.clickicon').each(function(){
// 		$(this).click(function() {
// 			var cType;
// 			$(this).parents().map(function(){
// 				if(this.id == "BetriebsListe") {
// 					cType = "BL";
// 				}
// 			});
// 			
// 			saveElement(this, cType);
// 		});
// 	});
// 	
// 	
// 	var saveElement = function(el, cType) {
// 		switch(cType){
// 			case "BL":
// 				var item = $(el).parents("div[id^='tabs']");
// 				items.betriebe.push(item);
// 		}
// 	}
// 	
// 	var l = '<a href="#">merker</a>';
// 	$(l).click(function(){
// 		items.betriebe.each(function() {
// 			console.log(this);
// 		});
// 	});
// 	$("#TopNav .wrapper").append(l);
// 	
// });
// 
