wp_menus.prototype.m_type = 0;
wp_menus.prototype.m_delay = 500;
wp_menus.prototype.m_bordersize = 1;
wp_menus.prototype.m_fontsize = 12;
wp_menus.prototype.m_filterOpacity = 100;
wp_menus.prototype.m_mozOpacity = 1;
wp_menus.prototype.m_width = 0;
wp_menus.prototype.m_padding = '3px 10px 3px 10px';
wp_menus.prototype.m_fontfamily = 'sans-serif';
wp_menus.prototype.m_bordercolor = '#000000';
wp_menus.prototype.m_bkgndcolor = 'transparent';
wp_menus.prototype.m_textcolor = '#000000';
wp_menus.prototype.m_bkgndcolorhl = 'transparent';
wp_menus.prototype.m_textcolorhl = '#ccccff';
wp_menus.prototype.m_imagearrow = 'arrow.gif';
wp_menus.prototype.m_imagearrowhl = 'arrowhl.gif';
wp_menus.prototype.m_itemlines = false;
wp_menus.prototype.m_timeout = null;
wp_menus.prototype.m_active = null;
wp_menus.prototype.m_txtalign = 'left';
wp_menus.prototype.m_txtnbclr = '';
wp_menus.prototype.m_txtnbclrinv = '';
wp_menus.prototype.m_txtnbbkgndclr = '';
wp_menus.prototype.m_txtnbbkgndclrinv = '';
wp_menus.prototype.m_fontbold = false;
wp_menus.prototype.m_fontitalic = false;
wp_menus.prototype.m_fontunderline = false;

function wp_menus() {this.m_acStack = new wp_activestack();}
wp_menus.prototype.InitElement = function(id_name,normal,over)
{ var e = document.getElementById(id_name); e.p_root = this; if(normal!='') {e.m_imgNormal = new Image(); e.m_imgOver = new Image(); e.m_imgNormal.src = normal; e.m_imgOver.src = over; }}
wp_menus.prototype.BeginMenu = function(id_name) { this.m_active = id_name; document.write('<div id="'+id_name+'" style="z-index:100;position:absolute;visibility:hidden;border-style:solid;border-color:'+this.m_bordercolor+';');
if(this.m_itemlines) document.write('border-width:'+this.m_bordersize+'px '+this.m_bordersize+'px 0px '+this.m_bordersize+'px;');
else document.write('border-width:'+this.m_bordersize+'px;');
if(browser.isIE) document.write('filter:alpha( opacity='+this.m_filterOpacity+' );'); else document.write('-moz-opacity:'+this.m_mozOpacity+';');
document.write('"><table cellpadding="0" cellspacing="0">'); }
wp_menus.prototype.EndMenu = function() { document.write('</table></div>'); this.m_active = null; }
wp_menus.prototype.AddLink = function(id_name,title,url,id_submenu,targetframe) {
  document.write('<tr><td><');
  if(url=='') document.write('div'); else document.write('a href="'+url+'" target="'+targetframe+'"');
  document.write(' id="'+id_name+'" style="display:block;color:'+this.m_textcolor+';font-size:'+this.m_fontsize+'px;font-family:'+this.m_fontfamily+';');
  if(this.m_fontbold) document.write('font-weight:bold;');if(this.m_fontitalic) document.write('font-style:italic;');document.write('text-decoration:' + (this.m_fontunderline?'underline;':'none;'));
  if(url=='') document.write('cursor:default;');
  if(this.m_bkgndcolor) document.write('background-color:'+this.m_bkgndcolor+';');
  if(this.m_width > 0) document.write('width:'+this.m_width+'px;'); else if(browser.isIE) document.write('width:100%;');
  if(this.m_itemlines) document.write('border-bottom:'+this.m_bordersize+'px solid '+this.m_bordercolor+';');
  if(this.m_acStack.m_showright) document.write('padding:'+this.m_padding+';'); else document.write('text-align:right;padding:'+this.m_padding+';');
  if(this.m_txtalign) document.write('text-align:'+this.m_txtalign+';');
  if(id_submenu) {document.write('background-image:url('+this.m_imagearrow+');background-repeat:no-repeat;background-position:'); if(this.m_acStack.m_showright) document.write('right;'); else document.write('left;'); }
  document.write('" onmouseover="wp_SubMenuOver(\''+id_name+'\');');
  document.write('" onmouseout="wp_SubMenuOut(\''+id_name+'\');" onclick="wp_ForceClose(\''+id_name+'\');">');
  document.writeln(title+'</' + (url=='' ? 'div' : 'a') + '></td></tr>');
  var e = document.getElementById(id_name); e.m_root = this; e.m_idchild = id_submenu; e.m_menu = this.m_active;
}
function wp_ImageRoll(action,id_name){
  var e = document.getElementById(id_name);
  if(e.m_root.m_txtnbclr.length > 0){if(action == 0){e.style.backgroundColor=e.m_root.m_txtnbbkgndclr;e.style.color=e.m_root.m_txtnbclr;}
	else{e.style.backgroundColor=e.m_root.m_txtnbbkgndclrinv;e.style.color=e.m_root.m_txtnbclrinv;}}
  if(e.m_imgNormal){if(action == 0){e.src = e.m_imgNormal.src;}else{e.src = e.m_imgOver.src;}}
}
function wp_MenuItemOver(id_name,p_root,id_sub){document.getElementById(id_name).m_root = p_root;clearInterval(p_root.m_timeout);if(id_sub)document.getElementById(id_sub).m_depth = 1;p_root.m_active = id_name;p_root.m_acStack.push(0,id_name,id_sub);}
function wp_SubMenuOver(id_name) { var e = document.getElementById(id_name); var pm = document.getElementById(e.m_menu); if(e.m_idchild) document.getElementById(e.m_idchild).m_depth = pm.m_depth+1; clearInterval(e.m_root.m_timeout); e.m_root.m_acStack.push(pm.m_depth,id_name,e.m_idchild); }
function wp_SubMenuOut(id_name) { var e = document.getElementById(id_name); if(e.m_root.m_active) {e.m_root.m_timeout = setInterval("wp_Timeout('"+e.m_root.m_active+"')",e.m_root.m_delay); }}
function wp_MenuItemOut(id_name,p_menu) { p_menu.m_timeout = setInterval("wp_Timeout('"+id_name+"')",p_menu.m_delay); }
function wp_Timeout(id_name) { var e = document.getElementById(id_name);
e.p_root.m_acStack.clear();
e.p_root.m_active = null; }
function wp_ForceClose(id_name) { var e = document.getElementById(id_name);
clearInterval(e.m_root.m_timeout);
e.m_root.m_acStack.clear();
e.m_root.m_active = null; }

wp_activestack.prototype.count = 0;
wp_activestack.prototype.type = 0;
wp_activestack.prototype.gap = 1;
wp_activestack.prototype.bordergap = 1;
wp_activestack.prototype.m_firstpopup = 0;
wp_activestack.prototype.m_showbelow = true;
wp_activestack.prototype.m_showright = true;
wp_activestack.prototype.m_padding = 20;

function wp_activestack() {this.depth = new Array(); this.element = new Array();}
wp_activestack.prototype.push = function(depth,idelem,idchild) {
  while(( this.count>0 )&&( depth<=this.depth[this.count-1] )) { this.pop(); }
  if(idelem) {
    this.depth[this.count] = depth; this.element[this.count] = idelem; this.count++;
    document.getElementById(idelem).m_idchild = idchild;
    if(depth==0) { wp_ImageRoll(1,idelem); if(idchild) this.ShowMenu(idchild,idelem,true);
    } else {
      var e = document.getElementById(idelem);
      e.style.backgroundColor = e.m_root.m_bkgndcolorhl;
      e.style.color = e.m_root.m_textcolorhl;
      if(e.style.backgroundImage) e.style.backgroundImage = 'url('+e.m_root.m_imagearrowhl+')';
      if(idchild) this.ShowMenu(idchild,idelem,false);
    }
  }
}

wp_activestack.prototype.pop = function() {
  with( this ) {
    if(count>0) { count--;
      if(depth[count]==0) { wp_ImageRoll(0,element[count]); }
      else {
        var e = document.getElementById(element[count]);
        e.style.backgroundColor = e.m_root.m_bkgndcolor;
        e.style.color = e.m_root.m_textcolor;
        if( e.style.backgroundImage ) e.style.backgroundImage = 'url('+e.m_root.m_imagearrow+')';
      }
      var idchild = document.getElementById(element[count]).m_idchild;
      if(idchild) document.getElementById(idchild).style.visibility = "hidden";
      depth[count] = element[count] = null;
    }
  }
}

wp_activestack.prototype.clear = function() { while(this.count>0) { this.pop(); }}
wp_activestack.prototype.ShowMenu = function(id_name,id_parent,down) {
  var p = document.getElementById(id_parent); var e = document.getElementById(id_name); var top = 0; var left = 0; var c = p;
  while(c) { top += c.offsetTop; left += c.offsetLeft; c = c.offsetParent; }
  if(this.type==1 || !down){var k = e.m_depth == 1 ? this.gap : p.m_root.m_bordersize; if(this.m_showright) left += p.offsetWidth + k; else left -= e.offsetWidth - k; if(!this.m_showbelow) top -= (e.offsetHeight - p.offsetHeight - (p.m_root.m_bordersize*2));}
  else{if(e.m_depth == 1){if(this.m_showbelow) top += p.offsetHeight + this.gap; else top -= (e.offsetHeight + this.gap);}}
  if(top+e.offsetHeight > document.body.scrollTop+document.body.clientHeight) top-= ((top+e.offsetHeight)-(document.body.scrollTop+document.body.clientHeight));
  if(e.m_depth == 1) { if(this.type==0){if(this.m_firstpopup == 1) left = left + (p.offsetWidth - e.offsetWidth) / 2; else if(this.m_firstpopup == 2) left = (left + p.offsetWidth) - e.offsetWidth; else if(this.m_firstpopup == 3) { var iWidth = p.offsetWidth - (browser.isIE ? 0 : this.m_padding) - 1; var vAnchors = e.getElementsByTagName(browser.isIE ? 'td' : 'a'); for(var n = 0; n < vAnchors.length; ++n) vAnchors[n].style.width = iWidth; }}
  else { if(this.m_firstpopup == 1) top = top + (p.offsetHeight - e.offsetHeight) / 2; else if(this.m_firstpopup == 2) top = (top + p.offsetHeight) - e.offsetHeight; }}
  e.style.top = top+"px"; e.style.left = left+"px"; e.style.visibility = "visible";
}


//MAIN MENU
var blankSrc = "wpscripts/blank.gif";


var wp_menubar0 = new wp_menus();
wp_menubar0.m_bkgndcolor = '#ffffff';
wp_menubar0.m_bkgndcolorhl = '#ffffff';
wp_menubar0.m_textcolor = '#000000';
wp_menubar0.m_textcolorhl = '#ec1c24';
wp_menubar0.m_bordercolor = '#404040';
wp_menubar0.m_bordersize = 1;
wp_menubar0.m_fontsize = 12;
wp_menubar0.m_imagearrow = 'wpimages/wpc92895a9.gif';
wp_menubar0.m_imagearrowhl = 'wpimages/wp8bdf0009.gif';
wp_menubar0.m_txtalign = 'left';
wp_menubar0.m_fontfamily = 'Microsoft Sans Serif,serif';
wp_menubar0.m_filterOpacity = 100;
wp_menubar0.m_mozOpacity = 1.000000;
wp_menubar0.m_delay = 500;
wp_menubar0.m_itemlines = true;
wp_menubar0.m_width = 0;
wp_menubar0.m_acStack.type = 0;
wp_menubar0.m_acStack.m_showbelow = true;
wp_menubar0.m_acStack.m_showright = true;
wp_menubar0.m_acStack.gap = 0;
wp_menubar0.m_acStack.bordergap = 1;
wp_menubar0.m_acStack.m_firstpopup = 1;
wp_menubar0.BeginMenu('wp_menubar0_P4');
wp_menubar0.AddLink('wp_menubar0_P4_I0','Ongoing Projects','ongoing_projects.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P4_I1','Success Stories','success_stories.html',null,'_self');
// wp_menubar0.AddLink('wp_menubar0_P4_I2','Newsflash! 1/2','page109aa.html',null,'_self');
// wp_menubar0.AddLink('wp_menubar0_P4_I3','Newsflash! 2/2','page110a.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P5');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P6');
// wp_menubar0.AddLink('wp_menubar0_P6_I0','Secretary','secretary.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P7');
// wp_menubar0.AddLink('wp_menubar0_P7_I0','This Month','this_month.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9');
wp_menubar0.AddLink('wp_menubar0_P9_I0','Food - Supermarkets','page40.html','wp_menubar0_P9_P1','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I1','Restaurants','page34.html','wp_menubar0_P9_P2','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I2','Cafes &amp; Bars','page45.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_I3','Beauty Salons &amp; Cosmetics','page35.html','wp_menubar0_P9_P4','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I4','Health and Medical Clinics','page48a.html','wp_menubar0_P9_P5','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I5','Children Corner','page36.html','wp_menubar0_P9_P6','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I6','Leisure &amp; Learning - Clubs','page37.html','wp_menubar0_P9_P7','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I7','Household - Shop. Malls','page38.html','wp_menubar0_P9_P8','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I8','Lifestyle - Flower &amp; Plants','page77.html','wp_menubar0_P9_P9','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I9','Supplies - Photos','page81.html','wp_menubar0_P9_P10','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I10','Pets','page63.html','wp_menubar0_P9_P11','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I11','Sport - Swimming pools -','page68.html','wp_menubar0_P9_P12','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I12','Business Services','page39.html','wp_menubar0_P9_P13','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I13','Culture','page89.html','wp_menubar0_P9_P14','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I14','International Associations','page95.html','wp_menubar0_P9_P15','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I15','Place of worship','page97.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_I16','Website Links','page98.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_I17','TIPS  (A to B)','page99.html','wp_menubar0_P9_P18','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I18','Azeri Language Glossary','page100.html','wp_menubar0_P9_P19','_self');
wp_menubar0.AddLink('wp_menubar0_P9_I19','Cultural Life','page4.html','wp_menubar0_P9_P20','_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P1');
wp_menubar0.AddLink('wp_menubar0_P9_P1_I0','Markets, Fish &amp; Meat','page41.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P1_I1','Caterers &amp; Take Away','page42.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P1_I2','Bread &amp; Confectionary','page43.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P1_I3','Wine &amp; Food Delivery','page44.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P2');
wp_menubar0.AddLink('wp_menubar0_P9_P2_I0','Regional Cuisine - Azeri','restaurant.html','wp_menubar0_P9_P2_P1','_self');
wp_menubar0.AddLink('wp_menubar0_P9_P2_I1','European Cuisine','page47.html','wp_menubar0_P9_P2_P2','_self');
wp_menubar0.AddLink('wp_menubar0_P9_P2_I2','Oriental Cuisine','page48.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P2_P1');
wp_menubar0.AddLink('wp_menubar0_P9_P2_P1_I0',' Georgian - Russian ','page51.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P2_P2');
wp_menubar0.AddLink('wp_menubar0_P9_P2_P2_I0','Italian - German','page52.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P4');
wp_menubar0.AddLink('wp_menubar0_P9_P4_I0','Massage and Spa','page54.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P4_I1','Manucure - Pedicure','page55.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P5');
wp_menubar0.AddLink('wp_menubar0_P9_P5_I0','Chiropractor t - Acupuncture','page107a.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P5_I1','Dentists','page49aa.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P5_I2','Pharmacy','page50.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P5_I3','Opticians','page53.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P6');
wp_menubar0.AddLink('wp_menubar0_P9_P6_I0','Schools','page56.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P6_I1','School Appliances - Toys','page57.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P6_I2','Health - Shoes - Misc.','page58.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P7');
wp_menubar0.AddLink('wp_menubar0_P9_P7_I0','Art &amp; Dance classes - Ikebana','page59.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P7_I1','Books - Newspapers - Cinema','page60.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P7_I2','Language','page61.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P7_I3','Music','page69.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P7_I4','Travel','page94.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P8');
wp_menubar0.AddLink('wp_menubar0_P9_P8_I0','Department Stores ','page65.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P8_I1','Household Ware','page70.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P8_I2','Kitchen Ware','page71.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P8_I3','Furniture - Upholstery','page72.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P8_I4','Bedlinen - Towels','page73.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P8_I5','Hardware household - TV','page74.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P8_I6','Lighting','page75.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P9');
wp_menubar0.AddLink('wp_menubar0_P9_P9_I0','Dry Cleaning - Shoe repair','page78.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P9_I1','Moving Companies','page80.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P9_I2','Sport Shops','page104.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P10');
wp_menubar0.AddLink('wp_menubar0_P9_P10_I0','Music &amp; DVD','page82.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P10_I1','Stationery','page83.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P10_I2','Sewing &amp; Fabric ','page84.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P10_I3','DIY &amp; Frame shops','page85.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P10_I4','Computer &amp; Internet','page103.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P11');
wp_menubar0.AddLink('wp_menubar0_P9_P11_I0','Kennels - Moving with Pets','page66.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P12');
wp_menubar0.AddLink('wp_menubar0_P9_P12_I0','Sport A-M','page64.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P12_I1','Sport R-V','page67.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P13');
wp_menubar0.AddLink('wp_menubar0_P9_P13_I0','Real Estate &amp; Insurance','page86.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P13_I1','Printing &amp;  Promotional Goods','page87.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P13_I2','Water - Couriers - Reception','page88.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P14');
wp_menubar0.AddLink('wp_menubar0_P9_P14_I0','Museum','page90.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P14_I1','Theater &amp; Concert Hall','page91.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P14_I2','Circus &amp; Art Gallery','page92.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P14_I3','Cultural Associations','page93.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P15');
wp_menubar0.AddLink('wp_menubar0_P9_P15_I0','Foreign Missions','page96.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P15_I1','Forum','page101.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P15_I2','CSA','page102.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P18');
wp_menubar0.AddLink('wp_menubar0_P9_P18_I0','TIPS (C to  I)','page105.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P18_I1','TIPS ( I to N)','page106.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P18_I2','TIPS  (N to S)','page107.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P18_I3','TIPS  (T to W)','page108.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P19');
wp_menubar0.AddLink('wp_menubar0_P9_P19_I0','Alphabet tips','page109.html',null,'_self');
wp_menubar0.EndMenu();
wp_menubar0.BeginMenu('wp_menubar0_P9_P20');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I0','Museum Center','page106a.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I1','Musical Comedy Theater','page109a.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I2','Opera &amp; Ballet Theater','page26.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I3','Puppet Theater','page111.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I4','Pantomine Theater','page112.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I5','Philarmony','page110.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I6','Exhibitions','page113.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I7','Concert','page105a.html',null,'_self');
wp_menubar0.AddLink('wp_menubar0_P9_P20_I8','Books','page108aa.html',null,'_self');
wp_menubar0.EndMenu();

// PPImgInit('tg_6','wpimages/wpb2ae0a0d.png','wpimages/wp85384b49.png','','',0,0);
// PPImgInit('tg_7','wpimages/wp76af3757.png','wpimages/wpf3c3eec8.png','','',0,0);