// jQuery script
// Autor: Martin Michalek, Studio Shortcat, michalek@shortcat.cz


jQuery.noConflict()  // Zamezeni konfliktum s jinymi knihovnami  

jQuery(document).ready(function() { 
    
    
    /* 
      === Menime text hlavicky a paticky podle jazykove verze ===
      Demence Webnode je ze je na vsech strankach stejna ceska.     
    */
    
    if (jQuery('html').attr('lang') == 'cs') {
        jQuery('#rbcCompanySlogan').text('Nejen pro měření tekutin v obalech');
        jQuery('#rbcFooterText').text('© 2007 LIMPRO s.r.o. ');  
    } else if (jQuery('html').attr('lang') == 'sk') {
        jQuery('#rbcCompanySlogan').text('Nielen pre meranie tekutín v obaloch');
        jQuery('#rbcFooterText').text('© LIMPRO s.r.o. Telefón +420 774 546 000');  
    } else if (jQuery('html').attr('lang') == 'de') {
        jQuery('#rbcCompanySlogan').text('Not only for measuring the liquid level in containers');
        jQuery('#rbcFooterText').text('© LIMPRO s.r.o. Phone +420 774 546 000');
    } else if (jQuery('html').attr('lang') == 'hu') {
        jQuery('#rbcCompanySlogan').text('Not only for measuring the liquid level in containers');
        jQuery('#rbcFooterText').text('© LIMPRO s.r.o. Phone +420 774 546 000');        
    } else if (jQuery('html').attr('lang') == 'pl') {
        jQuery('#rbcCompanySlogan').text('Not only for measuring the liquid level in containers');
        jQuery('#rbcFooterText').text('© LIMPRO s.r.o. Phone +420 774 546 000');        
    } else {
        jQuery('#rbcCompanySlogan').text('Not only for measuring the liquid level in containers');
        jQuery('#rbcFooterText').text('© LIMPRO s.r.o. Phone +420 774 546 000');        
    }
  

}); // jQuery(document).ready(function()

