/**
 * @author eef
 */
function getPage(page){

    new Ajax(page, {
        method: 'get',
        update: $('ajax')
    }).request();
}

function getGal(page){

    new Ajax(page, {
        method: 'post',
        update: $('galholder')
    }).request();
}

function getGalMenu(){
    new Ajax('port_con.php', {
        method: 'post',
        update: $('ajax')
    }).request();
	setTimeout("getGal('gal.php?cat_id=1')", 1000);
}

function getGalMenu2(){
    new Ajax('port_con.php', {
        method: 'post',
        update: $('ajax')
    }).request();
	setTimeout("getGal('gal.php?cat_id=2')", 1000);
}

function getGalMenu3(){
    new Ajax('port_con.php', {
        method: 'post',
        update: $('ajax')
    }).request();
	setTimeout("getGal('gal.php?cat_id=3')", 1000);
}

function getGalMenu4(){
    new Ajax('port_con.php', {
        method: 'post',
        update: $('ajax')
    }).request();
	setTimeout("getGal('gal.php?cat_id=4')", 1000);
}