$(document).ready(function()
{
    $('.rounded').corner();
    facebookInsert();
});

function showHomeSection() {
    $('#home_section_predskolaci').hide().delay(200).fadeIn(300);
    $('#home_section_skolaci').hide().delay(400).fadeIn(300);
    $('#home_section_teens').hide().delay(600).fadeIn(300);
    $('#home_section_studenti').hide().delay(800).fadeIn(300);
    $('#home_section_dospeli').hide().delay(1000).fadeIn(300);
}

function showHomeInfo()
{
    $('#home_info').hide().delay(2000).fadeIn(300);
}

function showElement(el) {
    $('#'+el+'_ToShow').show();
    $('#'+el+'_ToHide').hide();

    //priklad:
    //$content_cut = wordCut($row->structmem('popis')->scalarval(), 20);
    //$content_all = $row->structmem('popis')->scalarval();
    //echo('<p id="'.$row->structmem('id')->scalarval().'_ToHide">'.$content_cut.'<span style="cursor: pointer; margin: 0px; color: '.$color.';" onclick="showElement(\''.$row->structmem('id')->scalarval().'\');"> více</span></p>');
    //echo('<p id="'.$row->structmem('id')->scalarval().'_ToShow" style="display: none;">'.$content_all.'</p>');
    
}

function facebookInsert()
{
    var fbDiv = document.getElementById('facebook');
    fbDiv.innerHTML = '<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2Fhome.php%23%21%2Fpages%2FDDM-Ulita%2F138688352550&amp;layout=standard&amp;show_faces=false&amp;width=433&amp;action=like&amp;font=tahoma&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:433px; height:30px;" allowTransparency="true"></iframe>';
}

function resize_home_news(id)
{
    var e = document.getElementById(id);
    if(e.style.display == 'block')
        e.style.display = 'none';
    else
        e.style.display = 'block';
    var e_link = document.getElementById(id+'_link');
    e_link.style.display = 'none';
}
