   //////////////////////////////////////////
   // get current page filename into array //
   //////////////////////////////////////////
   ttemp = document.location.href.split('/');
          
   currentpage = ttemp[ttemp.length-2]+"/"+ttemp[ttemp.length-1];
   // remove URL search string used in change.js for automenu open
   removesearchstring = new Array();
   removesearchstring = currentpage.split('?');
   currentpage = removesearchstring[0];
   
   ///////////////////////////////
   // image_filename_ ... arrays//   
   ///////////////////////////////
   //alert(currentpage);
   if(currentpage == "branding/index.html"){
      image_filename = new Array(".././images/default1.jpg",".././images/default3.jpg",".././images/default2.jpg");
   }   
   
   ///////////////////////////////
   // current large image index //   
   ///////////////////////////////   
   var currentlargeimage = new Number(1);
   

