$(document).ready(function(){ 
	$("#technische-daten li").each(function(index)
	{
		index++;
		if(index % 2 == 0)
		{
			$("#technische-daten li:nth-child("+index+")") .css('background', '#f0f0f0');
		}
	});
}); 
