
var xCurrentMenuID='m1';
var xBusy=false;
  
function xonmouseout(id) {
  el=document.getElementById(id);
  el.style.color='#B99E8E';
}

function xonmouseover(id) {
  el=document.getElementById(id);
  el.style.color='#FFFFFF';
}

function xonclick(id) {
  el=document.getElementById(xCurrentMenuID);
  el.background='none';
    
  el=document.getElementById(id);
  el.background='none';
   
  xCurrentMenuID=id;
}

function xgetgalery(galery_name) {

   $j('#xPHOTO').html("");
   $j('#xTHUMBS').width(120);

   $j.ajax({
     type:"GET",
     url:'xinclude/get_first_image.php?xGalery_Name='+galery_name,
     cache:false,
     success: function(return_data) {
       $j('#xPHOTO').html(return_data);
       $j.ajax({
         type:"GET",
         url:'xinclude/get_thumbinals.php?xGalery_Name='+galery_name,
         cache:false,
         success: function(return_data) {
           $j('#xTHUMBS').html(return_data);
         }
       });
     }
   });
}

function xshowimage(image_name,galery_name,image_num,image_count) {

   $j.ajax({
     type:"GET",
     url:'xinclude/get_big_image.php?xImage_Name='+image_name+'&xGalery_name='+galery_name+'&xImage_num='+image_num+'&xImage_count='+image_count,
     cache:false,
     success: function(return_data) {
       $j('#xPHOTO').html(return_data);
     }
   });
}

function xgetmodels() {

   $j('#xTHUMBS').html("");
   $j('#xTHUMBS').width(1);

   $j.ajax({
     type:"GET",
     url:'xinclude/get_models.php',
     cache:false,
     success: function(return_data) {
       $j('#xPHOTO').html(return_data);
     }
   });

}

function xgetcontacts() {

   $j('#xTHUMBS').html("");
   $j('#xTHUMBS').width(1);

   $j.ajax({
     type:"GET",
     url:'xinclude/get_contacts.php',
     cache:false,
     success: function(return_data) {
       $j('#xPHOTO').html(return_data);
     }
   });

}

function xgetpartners() {

   $j('#xTHUMBS').html("");
   $j('#xTHUMBS').width(1);

   $j.ajax({
     type:"GET",
     url:'xinclude/get_partners.php',
     cache:false,
     success: function(return_data) {
       $j('#xPHOTO').html(return_data);
     }
   });

}

function xgetvystavki() {

   $j('#xTHUMBS').html("");
   $j('#xTHUMBS').width(1);

   $j.ajax({
     type:"GET",
     url:'xinclude/get_vystavki.php',
     cache:false,
     success: function(return_data) {
       $j('#xPHOTO').html(return_data);
     }
   });
}

function xgetguestbook() {

   $j('#xTHUMBS').html("");
   $j('#xTHUMBS').width(1);

   $j.ajax({
     type:"GET",
     url:'xinclude/get_guestbook.php',
     cache:false,
     success: function(return_data) {
       $j('#xPHOTO').html(return_data);
     }
   });

}

function xgetstudiya() {

   $j('#xTHUMBS').html("");
   $j('#xTHUMBS').width(1);

   $j.ajax({
     type:"GET",
     url:'xinclude/get_studiya.php',
     cache:false,
     success: function(return_data) {
       $j('#xPHOTO').html(return_data);
     }
   });

}


