function right(ID, PAGE, TPL)
{
   jQuery.get("/lib/right.php", {
       id : ID,
       page : PAGE,
       tpl : TPL
   }, function(data) {
       jQuery('#dynamicGalleryFooter').html(data);
   });
}

function left(ID, PAGE, TPL)
{
   jQuery.get("/lib/left.php", {
       id : ID,
       page : PAGE,
       tpl : TPL
   }, function(data) {
       jQuery('#dynamicGalleryFooter').html(data);
   });
}

function top_(ID, PAGE, TPL)
{
    jQuery.get("/lib/top.php", {
        id : ID,
        page : PAGE,
        tpl : TPL
    }, function(data) {
        jQuery('#dynamicGalleryFooter').html(data);
    });
}

function bottom(ID, PAGE, TPL)
{
    jQuery.get("/lib/bottom.php", {
        id : ID,
        page : PAGE,
        tpl : TPL
    }, function(data) {
        jQuery('#dynamicGalleryFooter').html(data);
    });
}

