/**
 * @author bastianw
 */
$(document).ready(function(){
    $('<div class="styleFooter"> </div>').appendTo($('#content-container'));
    
    
    // GERMAN LINK TRANSLATIONS
    $('html.de').each(function(){
    
        $('.boxprio2v2_405').each(function(i, jobj){
            // setting link Text German - Rezepte
            $(this).find('.linkContainer').find('b').html('mehr');
        });
        
        $('.boxprio2v2_405').each(function(i, jobj){
        
            // setting link Text German - Rezepte
            if ($(this, jobj).find('h2').html() === 'Rezepte') {
                $(this).find('.linkContainer').find('b').html('Asiatische Rezepte');
            }
            
            
            // setting link Text German - Produkte
            if ($(this, jobj).find('h2').html() === 'Produkte') {
                $(this).find('.linkContainer').find('b').html('Produkte der Aktionswoche');
            }
        });
        
        $('.boxprio2v5_405').each(function(i, jobj){
        
            // setting link Text German - coop@home
            if ($(this, jobj).find('h2').html() === 'Coopzeitung ') {
                $(this).find('.linkContainer').find('b').html('Asien aus erster Hand');
            }
            
            
            // setting link Text German - Produkte
            if ($(this, jobj).find('h2').html() === 'Online Wettbewerb') {
                $(this).find('.linkContainer').find('b').html('Jetzt mitmachen');
            }
            
        });
    });
    
    
    // FRANCE LINK TRANSLATIONS
    $('html.fr').each(function(){
    
        $('.boxprio1v2_820').each(function(i, jobj){
            // setting link Text Franz. - Rezepte
            $(this).find('.linkContainer').find('b').html('plus');
        });
        
        $('.boxprio2v2_405').each(function(i, jobj){
        
            // setting link Text Franz. - Rezepte
            if ($(this, jobj).find('h2').html() === 'Recettes') {
                $(this).find('.linkContainer').find('b').html('Recettes asiatiques');
            }
            
            
            // setting link Text Franz. - Produkte
            if ($(this, jobj).find('h2').html() === 'Actions') {
                $(this).find('.linkContainer').find('b').html('Produits de la semaine promotionnelle');
            }
            
        });
        
        $('.boxprio2v5_405').each(function(i, jobj){
        
            // setting link Text Franz. - coop@home
            if ($(this, jobj).find('h2').html() === 'Coopération') {
                $(this).find('.linkContainer').find('b').html('Pleins feux sur l\'Asie');
            }
            
            
            // setting link Text Franz. - Produkte
            if ($(this, jobj).find('h2').html() === 'Jeu-concours en ligne') {
                $(this).find('.linkContainer').find('b').html('Participer');
            }
            
        });
        
    });
    
    
    // ITALIAN LINK TRANSLATIONS
    $('html.it').each(function(){
    
        $('.boxprio1v2_820').each(function(i, jobj){
            // setting link Text italian - Rezepte
            $(this).find('.linkContainer').find('b').html('di piÃ¹');
        });
        
        $('.boxprio2v2_405').each(function(i, jobj){
        
            // setting link Text italian - Rezepte
            if ($(this, jobj).find('h2').html() === 'Ricette') {
                $(this).find('.linkContainer').find('b').html('Ricette asiatiche');
            }
            
             // setting link Text italian - Produkte
            if ($(this, jobj).find('h2').html() === 'Azioni') {
                $(this).find('.linkContainer').find('b').html('Prodotti della promozione settimanale');
            }
           
            
        });
        
        $('.boxprio2v5_405').each(function(i, jobj){
        
            // setting link Text italian - coop@home
            if ($(this, jobj).find('h2').html() === 'Cooperazione') {
                $(this).find('.linkContainer').find('b').html('L’Asia a portata di mano');
            }
            
            
            // setting link Text italian - Produkte
            if ($(this, jobj).find('h2').html() === 'Concorso online') {
                $(this).find('.linkContainer').find('b').html('Partecipa ora!');
            }
            
        });
        
        
    });
    
});

