function XTGaleryInitSroller(){
    $('.scroll-pane').jScrollHorizontalPane({
        scrollbarHeight: 10
    });
}


var currentPane = 'XTGalMainPane';

function XTGalerySwitchImage(imageID, imageTitle, imageDescription){
    var imgSrc = '/download.php?file_id=' + imageID + '&file_version=7';
    switch (currentPane){
        case 'XTGalMainPane':
            $("#XTGalTempPane img.bigfixed").attr('src',imgSrc);
            $("#XTGalTempPane img.bigfixed").attr('alt',imageTitle);
            $("#XTGalTempPane img.bigfixed").attr('title',imageDescription);
            $('#XTGalTempPane').fadeIn(1500);
            $('#XTGalMainPane').fadeOut(1500);
            currentPane = 'XTGalTempPane';
        break;
        case 'XTGalTempPane':
            $("#XTGalMainPane img.bigfixed").attr('src',imgSrc);
            $("#XTGalTempPane img.bigfixed").attr('alt',imageTitle);
            $("#XTGalTempPane img.bigfixed").attr('title',imageDescription);
            $('#XTGalMainPane').fadeIn(1500);
            $('#XTGalTempPane').fadeOut(1500);
            currentPane = 'XTGalMainPane';
        break;
    }

}
