$(document).ready(function() {
    $('.menubox').each(function(){
        $(this).mouseover(function(){
            src = $(this).find('img').attr('src');
            $(this).find('img').attr('src', src.replace('.gif', '_hover.gif'));
            $(this).addClass('itemhover');
        });
        $(this).mouseout(function(){
            src = $(this).find('img').attr('src');
            $(this).find('img').attr('src', src.replace('_hover.gif', '.gif'));
            $(this).removeClass('itemhover');
        });
    });
    
});

var langs = {'pl' : {'info' : 'Strona informacyjna', 'art' : 'Art Hippica', 'shop' : 'Sklep internetowy'},
             'cz' : {'info' : 'Informace o společnosti', 'art' : 'Art Hippica', 'shop' : 'Internetový obchod'},
             'en' : {'info' : 'Information site', 'art' : 'Art Hippica', 'shop' : 'Online shop'}};

function changelang(obj){
    lang = $(obj).attr('class');
    SetCookie('lang', lang, 31);
    $('.text_info a').html(langs[lang]['info']);
    $('.text_shop a').html(langs[lang]['shop']);
    $('.text_art a').html(langs[lang]['art']);
    
    $('#languages h3').each(function(){
       if ($(this).hasClass('selected')){
            $(this).removeClass('selected');
       }
    });
    $(obj).parent().addClass('selected');
    
    return false;
}

function SetCookie(cookieName,cookieValue,nDays) {
 var today = new Date();
 var expire = new Date();
 if (nDays==null || nDays==0) nDays=1;
 expire.setTime(today.getTime() + 3600000*24*nDays);
 document.cookie = cookieName+"="+escape(cookieValue)
                 + ";expires="+expire.toGMTString();
}

