function dia_setFontSize(size)
{
    $('content').setStyle({
        fontSize : size
    });
    Cookie.set('dia_FontSize', size, 30);
    
    $('setFontSizeTo-11px').removeClassName('active');
    $('setFontSizeTo-12px').removeClassName('active');
    $('setFontSizeTo-14px').removeClassName('active');
    
    $('setFontSizeTo-'+size).addClassName('active');
}

function dia_setBackgroundColor(color)
{
    $(document.body).setStyle({
        backgroundColor : '#'+color
    });
    
    if (color.toUpperCase() == 'BD0006')
    {
        $('content-outline').setStyle({backgroundImage:'url(/css/themes/light/gfx/bg-content-outline-red.gif)'});
        $$('div.content-header').each(function(el) {el.setStyle({borderColor:'#FFFFFF'});});
        $$('div.footer').each(function(el) {el.setStyle({borderColor:'#FFFFFF'});});
        $('footer').setStyle({borderColor:'#FFFFFF'});
        $$('div.content-header h2').each(function (el) {el.setStyle({color:'#DEDAD9'});});
        //$$('a.action-more').each(function (el) {el.setStyle({backgroundImage:'url(/css/themes/light/gfx/bg-next-red.gif)'});});
        //$$('a.action-print').each(function (el) {el.setStyle({backgroundImage:'url(/css/themes/light/gfx/bg-print-red.gif)'});});
        //$$('a.back').each(function (el) {el.setStyle({backgroundImage:'url(/css/themes/light/gfx/bg-prev-red.gif)'});});
    }
    else
    {
        $('content-outline').setStyle({backgroundImage:'url(/css/themes/light/gfx/bg-content-outline.gif)'});
        $$('div.content-header').each(function(el) {el.setStyle({borderColor:'#c9cfcf'});});
        $$('div.footer').each(function(el) {el.setStyle({borderColor:'#c9cfcf'});});
        $('footer').setStyle({borderColor:'#c9cfcf'});
        $$('div.content-header h2').each(function (el) {el.setStyle({color:'#BD0007'});});
        //$$('a.action-more').each(function (el) {el.setStyle({backgroundImage:'url(/css/themes/light/gfx/bg-next.jpg)'});});
        //$$('a.action-print').each(function (el) {el.setStyle({backgroundImage:'url(/css/themes/light/gfx/bg-print.jpg)'});});
        //$$('a.back').each(function (el) {el.setStyle({backgroundImage:'url(/css/themes/light/gfx/wstecz_no_anim.gif)'});});
    }
    
    Cookie.set('dia_backgroundColor', color, 30);
    
    $('setBackgroundColorTo-8E989A').removeClassName('active');
    $('setBackgroundColorTo-47AECF').removeClassName('active');
    $('setBackgroundColorTo-8DA37D').removeClassName('active');
    $('setBackgroundColorTo-BD0006').removeClassName('active');
    
    
    $('setBackgroundColorTo-'+color).addClassName('active');
}

if (color = Cookie.get('dia_backgroundColor'))
{
    dia_setBackgroundColor(color);
    $('setBackgroundColorTo-'+color).addClassName('active');
}

if (size = Cookie.get('dia_FontSize'))
{
    dia_setFontSize(size);
    $('setFontSizeTo-'+size).addClassName('active');
}

