/**
 * Special functionality for swedish words since there is different requirements
 */
Site.ReadSpeaker.PopulateAllWordsStandard = function( clickedAnchor )
{
    clickedAnchor.parents( "li.search-result-word-wrapper" ).find( ".search-result-head-word" ).each( function()
    {
        var cloned = $( this ).clone();
        
        var wordClassElement = cloned.find( ".word-class" );
        var wordClass = "";
        
        if( wordClassElement.length == 1 )
        {
            wordClass = wordClassElement.text();
        }
        
        cloned.find( "*" ).remove();
        
        Site.ReadSpeaker.AddHeaderWord( cloned.text(), wordClass );
    });
}