$(document).ready(function(){ 
						   
	// Place Points behind breadcrumbs
	$("#breadcrumbs").each(function(){		
		var Text = $(this).text();
		var Html = $(this).html();
		
		$(this).append("<span class='temp'>" + Text + "</span>");		
		var TextLength = $(this).find(".temp").width();
		$(this).empty(".temp");
		$(this).append(Html);

		$(this).append("<span class='points'>...</span>");
		$(this).find(".points").css("left", TextLength + 107);
		
		$(this).css("overflow", "hidden");		
	});
	
});
