/**
 * @author Sven
 */
$(document).ready(function()
{ 	
	var i=1;
	$("UL.level_1 LI").each(function(){
		
		
		
		if ($(this).parent().hasClass("level_1"))
		{
			$(this).attr("class","lnk_"+i);
		
		
		i++;
		}
		
		
		
	});
});
