$(document).ready(function() {
    closeLink = '<p onClick=\'hideContent();\' align=\'right\' style=\'cursor:pointer;\'><b>Powrót do głównego menu</b></p>';
    footer = '<br/><br/><br/><div id="stopkatresc"> <center><img src="img/tlo-dol.png" usemap="#tlo-dol" class="obrazek calosc"/></center> </div>';
    jQuery("#tresc").append(footer);
});

function hideContent()
{
    //jQuery('#tlo-gora').show();
    jQuery("#tresc").hide();
    jQuery("#stopka").show();
}

function loadContent( url )
{
    return;
    jQuery("#tresc").height(760);
    jQuery("#tresc").show();
    jQuery("#tresc").html('Ładowanie strony, proszę czekać...');

    //jQuery("#tresc").html('');
    jQuery("#tresc").height('auto');
    jQuery.ajaxSetup({async: false});
    jQuery("#tresc").load( url );
    jQuery.ajaxSetup({async: true});
    jQuery("#tresc").prepend(closeLink);
    jQuery("#tresc").append(footer);
    jQuery("#stopka").hide();
    jQuery("#tresc").show();

    if(jQuery("#tresc").height() < 756)
    {
        jQuery("#tresc").height(760);
        //jQuery('#tlo-gora').hide();
        setOpacity('1');
    }
    else
    {
        setOpacity('0.88');
    }
}

function setOpacity( value )
{
    jQuery("#tresc").css('opacity', value);
    jQuery("#tresc").css('filter', 'alpha(opacity=' + value + ')');
}

function badziaradzi()
{
    loadContent("content/badzia-radzi/index.html");
    setOpacity('1');
}

function buty()
{
    loadContent("content/badzia-radzi/buty/index.html");
}

function spiwory()
{
    loadContent("content/badzia-radzi/spiwory/index.html");
}

function orajdzie()
{
    loadContent("content/o-rajdzie/index.html");
}

function listatras()
{
    loadContent("content/lista-tras/index.html");
}

function zapisy()
{
    loadContent("content/zapisy/index.html");
}

function kontakt()
{
    loadContent("content/kontakt/index.html");
}

function coNalezyZabrac()
{
    loadContent("content/co-nalezy-zabrac/index.html");
}

function regulamin()
{
    loadContent("content/regulamin/index.html");
}

