﻿function init() {

	$('#navigation a').each(function()
	    {
	        $(this).append('<span>' + $(this).text() + '</span>');
        }
    )
}


$(init);