var CKUpload;
function ShowStats()
{
    jQuery("#userInfo").fadeOut(function() { jQuery("#userStats").fadeIn(); });
    
}

function ShowInfo()
{
    jQuery("#userStats").fadeOut(function () { jQuery("#userInfo").fadeIn(); });
}

function GalleryUploadRoll()
{
    if(jQuery("#galleryUpload").css("display") == "none")
         jQuery("#galleryUpload").slideDown('slow');
    else
         jQuery("#galleryUpload").slideUp('slow');

    return false;
}

function DelGroupAsk()
{
    var x = confirm("Opravdu si přejte skupinu smazat?\n\nTento krok nelze vzít zpět!");

    if(x) return true;

    return false;
}

function ReplaceCK(co)
{
        CKUpload = CKEDITOR.replace(co,
        {
            toolbar:
            [
                ["Bold","Italic","Underline","Strike","-","Link","Unlink","-","Image"]
            ]
        }
    );
}

function dalsiObrazek()
{
    var now = document.getElementById("uploadArea").innerHTML;
    var newdiv = document.createElement('div');

    var novy = '<strong>Obrázek:</strong>';
        novy += ' <input type="file" name="foto[]" value="" />';
        novy += ' <strong>Popis:</strong>';
        novy += ' <input type="text" name="fotod[]" value="" />';

    newdiv.innerHTML = novy;

    document.getElementById("uploadArea").appendChild(newdiv);

    return false;
}

jQuery(document).ready(function(){
	jQuery("#slider").easySlider({
		auto: true,
		continuous: true,
                controlsShow:false
	});
});


function OpenEditorUpload(idEditor)
{
    var e = window.open(WEBURL + 'galerieEditor.php','', 'width=550px,height=400px,scrollbars=1');
    return false;
}