function MM_showHideLayers() 
{ //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  	if ((obj=MM_findObj(args[i]))!=null) 
		{ 
			v=args[i+2];
    		if (obj.style) 
				{ obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    		obj.visibility=v;
			if (v ==  'visible')
			{obj.display='block';}
			else
			{obj.display='none';}
		}
}

function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  tmLn = document.MM_Time[tmLnName];
  if (numGotos != null)
    if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
    else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
  jmpFwd = (fNew > tmLn.curFrame);
  for (i = 0; i < tmLn.length; i++) {
    sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
    if (sprite.charAt(0) == "s") {
      numKeyFr = sprite.keyFrames.length;
      firstKeyFr = sprite.keyFrames[0];
      lastKeyFr = sprite.keyFrames[numKeyFr - 1];
      if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
      for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
      for (j=0; j<sprite.values.length; j++) {
        props = sprite.values[j];
        if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
        else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
        if (sprite.obj != null) {
          if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
          else        sprite.obj[props.prop2][props.prop] = props[propNum];
      } }
    } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  }
  tmLn.curFrame = fNew;
  if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
}

function MM_timelinePlay(tmLnName, myID) { //v1.2
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  tmLn = document.MM_Time[tmLnName];
  if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
  if (myID == tmLn.ID) { //if Im newest
    setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
    fNew = ++tmLn.curFrame;
    for (i=0; i<tmLn.length; i++) {
      sprite = tmLn[i];
      if (sprite.charAt(0) == 's') {
        if (sprite.obj) {
          numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
          if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
            keyFrm=1;
            for (j=0; j<sprite.values.length; j++) {
              props = sprite.values[j];
              if (numKeyFr != props.length) {
                if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
                else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
              } else {
                while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
                if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
                  if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
                  else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
        } } } } }
      } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
      if (fNew > tmLn.lastFrame) tmLn.ID = 0;
  } }
}

function MM_timelineStop(tmLnName) { //v1.2
clicked = false
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  if (tmLnName == null)  //stop all
    for (var i=0; i<document.MM_Time.length; i++) document.MM_Time[i].ID = null;
  else document.MM_Time[tmLnName].ID = null; //stop one
}

function MM_initTimelines() 
{
    //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
    var ns = navigator.appName == "Netscape";
    document.MM_Time = new Array(1);
    document.MM_Time[0] = new Array(1);
    document.MM_Time["Timeline1"] = document.MM_Time[0];
    document.MM_Time[0].MM_Name = "Timeline1";
    document.MM_Time[0].fps = 15;
    document.MM_Time[0][0] = new String("behavior");
    document.MM_Time[0][0].frame = 50;
    document.MM_Time[0][0].value = "hideAll()";
    document.MM_Time[0].lastFrame = 50;
    for (i=0; i<document.MM_Time.length; i++) {
        document.MM_Time[i].ID = null;
        document.MM_Time[i].curFrame = 0;
        document.MM_Time[i].delay = 100/document.MM_Time[i].fps;
    }
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_nbGroup(event, grpName) { //v3.0
  var i,img,nbArr,args=MM_nbGroup.arguments;
  if (event == "init" && args.length > 2) {
    if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
      img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
      if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
      nbArr[nbArr.length] = img;
      for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
        if (!img.MM_up) img.MM_up = img.src;
        img.src = img.MM_dn = args[i+1];
        nbArr[nbArr.length] = img;
    } }
  } else if (event == "over") {
    document.MM_nbOver = nbArr = new Array();
    for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
      if (!img.MM_up) img.MM_up = img.src;
      img.src = (img.MM_dn && args[i+2]) ? args[i+2] : args[i+1];
      nbArr[nbArr.length] = img;
    }
  } else if (event == "out" ) {
    for (i=0; i < document.MM_nbOver.length; i++) {
      img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
  } else if (event == "down") {
    if ((nbArr = document[grpName]) != null)
      for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
    document[grpName] = nbArr = new Array();
    for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
      if (!img.MM_up) img.MM_up = img.src;
      img.src = img.MM_dn = args[i+1];
      nbArr[nbArr.length] = img;
  } }
}

function swapImg(element,name,action)
	{
		if (action == 'over')
		{
			element.src = 'images/menuebuttons/' + name + '_over.gif'
		}
		else
		{
			element.src = 'images/menuebuttons/' + name + '.gif'
		}
	}

function MM_findObj(n, d) 
{return document.getElementById(n);}

function ShowSecondLevelLayer (layer,action)
	{
		var obj;
		obj = document.getElementById(layer);
		if (action=='show')
		{obj.style.visibility='visible';
		obj.style.display='block';}
		else
		{obj.style.visibility='hidden';
		obj.style.display='none';}
	}	

function hideAll()
{
	MM_showHideLayers('AcademyLayer','','hide');
	MM_showHideLayers('EventsLayer','','hide');
	MM_showHideLayers('MediniyutMadaLayer','','hide');
	MM_showHideLayers('HachativaLemadaeyHatevaLayer','','hide');
	MM_showHideLayers('HachativaLemadaeyHaruahLayer','','hide');
	MM_showHideLayers('HachativaLemadaeyHatevaLayer','','hide');
	MM_showHideLayers('KsharimBeinLeumiyimLayer','','hide');
	MM_showHideLayers('HahotzaaLaorLayer','','hide');
	hideSecondLevelLayers();
}

function hideSecondLevelLayers()
{
	obj = document.getElementById('OdotLayer');
	obj.style.visibility='hidden';
	obj.style.display='none';
	obj = document.getElementById('PirsumimLayer');
	obj.style.visibility='hidden';	
	obj.style.display='none';
	obj = document.getElementById('PrasimVmilgotLayer');
	obj.style.visibility='hidden';
	obj.style.display='none';
	obj = document.getElementById('HachativaLemadaeyHaruahOdotLayer');
	obj.style.visibility='hidden';
	obj.style.display='none';
	obj = document.getElementById('HahotzaaLaorPirsumimLayer');
	obj.style.visibility='hidden';
	obj.style.display='none';
}
	
var myTop;
//if (screen.width==1024)
//	{
		MenuTop																=	'151';
		AcademyLayerLeft 											= '678';
		OdotLayerLeft	 												= '572';
		EventsLayerLeft												= '553';//'572';
		PirsumimLayerLeft											= '453';//'472';
		PirsumimLayerTop											= '187';
		MediniyutMadaLayerLeft								= '433';//'480';
		PrasimVmilgotLayerLeft								= '328';//'375';
		PrasimVmilgotLayerTop									= '302';//'214';
		HachativaLemadaeyHaruahLayerLeft 			= '355';//'395';
		HachativaLemadaeyHaruahOdotLayerLeft 	= '250';//'290';
		HachativaLemadaeyHatevaLayerLeft			= '250';//'290';
		KsharimBeinLeumiyimLayerLeft					=	'170';//'190';
		HahotzaaLaorLayerleft									=	'88';//'100';
		HahotzaaLaorPirsumimLayerLeft					=	'1';//'161';//'1';
		HahotzaaLaorPirsumimLayerTop					=	'187';
//		HahotzaaLaorPirsumimLayerLeft				=	'161';//'1';
//		HahotzaaLaorPirsumimLayerTop				=	'128';		
//	}
			
document.write("<DIV id='AcademyLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ AcademyLayerLeft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/haakademya/odot.gif' NAME='odot' onmouseover=ShowSecondLevelLayer('OdotLayer','show');swapImg(this,'haakademya/odot','over') onmouseout=swapImg(this,'haakademya/odot','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/members/members.asp' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/chavrey_haakademya.gif' NAME='chavrey_haakademya' onmouseover=hideSecondLevelLayers();swapImg(this,'haakademya/chavrey_haakademya','over') onmouseout=swapImg(this,'haakademya/chavrey_haakademya','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/council/council.asp' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/hamoatza.gif' NAME='hamoatza' onmouseover=hideSecondLevelLayers();swapImg(this,'haakademya/hamoatza','over') onmouseout=swapImg(this,'haakademya/hamoatza','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/contact/contact.asp' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/hatzevet_haminhaly.gif' NAME='hatzevet_haminhaly' onmouseover=hideSecondLevelLayers();swapImg(this,'haakademya/hatzevet_haminhaly','over') onmouseout=swapImg(this,'haakademya/hatzevet_haminhaly','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=budjet' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/taktziv_haakdemya.gif' NAME='taktziv_haakdemya' onmouseover=hideSecondLevelLayers();swapImg(this,'haakademya/taktziv_haakdemya','over') onmouseout=swapImg(this,'haakademya/taktziv_haakdemya','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=commities' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/vaadot_haakdemya.gif' NAME='vaadot_haakdemya' onmouseover=hideSecondLevelLayers();swapImg(this,'haakademya/vaadot_haakdemya','over') onmouseout=swapImg(this,'haakademya/vaadot_haakdemya','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=reports' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/dochot_haakdemya.gif' NAME='dochot_haakdemya' onmouseover=hideSecondLevelLayers();swapImg(this,'haakademya/dochot_haakdemya','over') onmouseout=swapImg(this,'haakademya/dochot_haakdemya','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")
document.write("<DIV id='OdotLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ OdotLayerLeft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>	")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=about_academy' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/odot/odot_haakademya.gif' NAME='odot_haakademya' onmouseover=swapImg(this,'haakademya/odot/odot_haakademya','over') onmouseout=swapImg(this,'haakademya/odot/odot_haakademya','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=history' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/odot/perek_history.gif' NAME='perek_history' onmouseover=swapImg(this,'haakademya/odot/perek_history','over') onmouseout=swapImg(this,'haakademya/odot/perek_history','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=law' TARGET='mainFrame'><IMG SRC='images/menuebuttons/haakademya/odot/hatakanon_vehachok.gif' NAME='hatakanon_vehachok' onmouseover=swapImg(this,'haakademya/odot/hatakanon_vehachok','over') onmouseout=swapImg(this,'haakademya/odot/hatakanon_vehachok','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")

document.write("<DIV id='EventsLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ EventsLayerLeft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/events/events.asp' TARGET='mainFrame'><IMG SRC='images/menuebuttons/eruim_vechadashot/luach_eruim.gif' NAME='luach_eruim' onmouseover=hideSecondLevelLayers();swapImg(this,'eruim_vechadashot/luach_eruim','over') onmouseout=swapImg(this,'eruim_vechadashot/luach_eruim','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/news/news.asp?cat_id=1' TARGET='mainFrame'><IMG SRC='images/menuebuttons/eruim_vechadashot/hodaot_laitonut.gif' NAME='hodaot_laitonut' onmouseover=hideSecondLevelLayers();swapImg(this,'eruim_vechadashot/hodaot_laitonut','over') onmouseout=swapImg(this,'eruim_vechadashot/hodaot_laitonut','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/eruim_vechadashot/pirsumim_tkufatiyim.gif' NAME='pirsumim_tkufatiyim' onmouseover=ShowSecondLevelLayer('PirsumimLayer','show');swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim','over') onmouseout=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")
document.write("<DIV id='PirsumimLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ PirsumimLayerLeft + "px; top:"+ PirsumimLayerTop + "px; width:107px; height:130px;'>	")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/pirsumim/pirsumim.asp?egeret_type=1' TARGET='mainFrame'><IMG SRC='images/menuebuttons/eruim_vechadashot/pirsumim_tkufatiyim/igeret.gif' NAME='igeret' onmouseover=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim/igeret','over') onmouseout=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim/igeret','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/pirsumim/pirsumim.asp?egeret_type=2' TARGET='mainFrame'><IMG SRC='images/menuebuttons/eruim_vechadashot/pirsumim_tkufatiyim/forum.gif' NAME='forum' onmouseover=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim/forum','over') onmouseout=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim/forum','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/pirsumim/pirsumim.asp?egeret_type=3' TARGET='mainFrame'><IMG SRC='images/menuebuttons/eruim_vechadashot/pirsumim_tkufatiyim/bulletin.gif' NAME='bulletin' onmouseover=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim/bulletin','over') onmouseout=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim/bulletin','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/pirsumim/pirsumim.asp?egeret_type=4' TARGET='mainFrame'><IMG SRC='images/menuebuttons/eruim_vechadashot/pirsumim_tkufatiyim/hadoch_hashnati.gif' NAME='hadoch_hashnati' onmouseover=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim/hadoch_hashnati','over') onmouseout=swapImg(this,'eruim_vechadashot/pirsumim_tkufatiyim/hadoch_hashnati','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")

document.write("<DIV id='MediniyutMadaLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ MediniyutMadaLayerLeft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||35' TARGET='mainFrame'><IMG SRC='images/menuebuttons/mediniyut_mada/odot.gif' NAME='odot' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/odot','over') onmouseout=swapImg(this,'mediniyut_mada/odot','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||22' TARGET='mainFrame'><IMG SRC='images/menuebuttons/mediniyut_mada/hakeren_haleumit_lemada.gif' NAME='hakeren_haleumit_lemada' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/hakeren_haleumit_lemada','over') onmouseout=swapImg(this,'mediniyut_mada/hakeren_haleumit_lemada','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||23' TARGET='mainFrame'STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/mediniyut_mada/keren_batsheva_deRotzild.gif' NAME='keren_batsheva_deRotzild' onmouseover=swapImg(this,'mediniyut_mada/keren_batsheva_deRotzild','over') onmouseout=swapImg(this,'mediniyut_mada/keren_batsheva_deRotzild','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||24' TARGET='mainFrame'STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/mediniyut_mada/tochnit_bochora.gif' NAME='tochnit_bochora' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/tochnit_bochora','over') onmouseout=swapImg(this,'mediniyut_mada/tochnit_bochora','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||26' TARGET='mainFrame'STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/mediniyut_mada/forum_talam.gif' NAME='forum_talam' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/forum_talam','over') onmouseout=swapImg(this,'mediniyut_mada/forum_talam','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='http://education.academy.ac.il' TARGET='_blank' STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/mediniyut_mada/mechkar_yesumi_bechinuch.gif' NAME='mechkar_yesumi_bechinuch' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/mechkar_yesumi_bechinuch','over') onmouseout=swapImg(this,'mediniyut_mada/mechkar_yesumi_bechinuch','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||48' TARGET='mainFrame'STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/mediniyut_mada/maarach_ecology_rav_gormi.gif' NAME='maarach_ecology_rav_gormi' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/maarach_ecology_rav_gormi','over') onmouseout=swapImg(this,'mediniyut_mada/maarach_ecology_rav_gormi','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||46' TARGET='mainFrame'STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/mediniyut_mada/merkaz_hakesher.gif' NAME='merkaz_hakesher' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/merkaz_hakesher','over') onmouseout=swapImg(this,'mediniyut_mada/merkaz_hakesher','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/mediniyut_mada/prasim_vemilgot.gif' NAME='' onmouseover=ShowSecondLevelLayer('PrasimVmilgotLayer','show');swapImg(this,'mediniyut_mada/prasim_vemilgot','over') onmouseout=swapImg(this,'mediniyut_mada/prasim_vemilgot','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||31' STYLE='cursor: hand;' TARGET='mainFrame'><IMG SRC='images/menuebuttons/mediniyut_mada/netzigut_begufim_chitzoniyim.gif' NAME='netzigut_begufim_chitzoniyim' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/netzigut_begufim_chitzoniyim','over') onmouseout=swapImg(this,'mediniyut_mada/netzigut_begufim_chitzoniyim','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||41' TARGET='mainFrame'STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/mediniyut_mada/mifalei_chativa_baavar.gif' NAME='mifalei_chativa_baavar' onmouseover=hideSecondLevelLayers();swapImg(this,'mediniyut_mada/mifalei_chativa_baavar','over') onmouseout=swapImg(this,'mediniyut_mada/mifalei_chativa_baavar','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")
document.write("<DIV id='PrasimVmilgotLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ PrasimVmilgotLayerLeft + "px; top:"+ PrasimVmilgotLayerTop + "px; width:107px; height:130px;'>	")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||29' TARGET='mainFrame'><IMG SRC='images/menuebuttons/mediniyut_mada/teva.gif' NAME='teva' onmouseover=swapImg(this,'mediniyut_mada/teva','over') onmouseout=swapImg(this,'mediniyut_mada/teva','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||44' TARGET='mainFrame'><IMG SRC='images/menuebuttons/mediniyut_mada/milgot_adams.gif' NAME='milgot_adams' onmouseover=swapImg(this,'mediniyut_mada/milgot_adams','over') onmouseout=swapImg(this,'mediniyut_mada/milgot_adams','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=1||30' TARGET='mainFrame'><IMG SRC='images/menuebuttons/mediniyut_mada/folx.gif' NAME='folx' onmouseover=swapImg(this,'mediniyut_mada/folx','over') onmouseout=swapImg(this,'mediniyut_mada/folx','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")

document.write("<DIV id='HachativaLemadaeyHaruahLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ HachativaLemadaeyHaruahLayerLeft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||36' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/odot_ruah.gif' NAME='odot_ruah' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/odot_ruah','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/odot_ruah','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||39' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/forum_tzeirei_hachativa.gif' NAME='forum_tzeirei_hachativa' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/forum_tzeirei_hachativa','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/forum_tzeirei_hachativa','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||4' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/haonomestikon_shel_EI.gif' NAME='haonomestikon_shel_EI' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/haonomestikon_shel_EI','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/haonomestikon_shel_EI','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||6' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/cheker_hashira_vehapiyut.gif' NAME='cheker_hashira_vehapiyut' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/cheker_hashira_vehapiyut','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/cheker_hashira_vehapiyut','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||7' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/monomenta.gif' NAME='monomenta' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/monomenta','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/monomenta','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||33' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/mifal_hatfila.gif' NAME='mifal_hatfila' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/mifal_hatfila','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/mifal_hatfila','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||47' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/atid_madaey_haruach.gif' NAME='atid_madaey_haruach' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/atid_madaey_haruach','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/atid_madaey_haruach','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||5' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/pliographya.gif' NAME='pliographya' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/pliographya','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/pliographya','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||9' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/hartzaat_pines.gif' NAME='hartzaat_pines' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/hartzaat_pines','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/hartzaat_pines','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=2||42' TARGET='mainFrame'STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/mifalei_chativa_baavar.gif' NAME='mifalei_chativa_baavar' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_haruach/mifalei_chativa_baavar','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/mifalei_chativa_baavar','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")
document.write("<DIV id='HachativaLemadaeyHaruahOdotLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ HachativaLemadaeyHaruahOdotLayerLeft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>	")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=about_ruah' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/odot_hachativa/odot_hachativa.gif' NAME='odot_hachativa' onmouseover=swapImg(this,'hachativa_lemadaey_haruach/odot_hachativa/odot_hachativa','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/odot_hachativa/odot_hachativa','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=about_ruah' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/odot_hachativa/vaadat_hatochniyot.gif' NAME='vaadat_hatochniyot' onmouseover=swapImg(this,'hachativa_lemadaey_haruach/odot_hachativa/vaadat_hatochniyot','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/odot_hachativa/vaadat_hatochniyot','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=about_ruah' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_haruach/odot_hachativa/vaadat_hapirsumim.gif' NAME='vaadat_hapirsumim' onmouseover=swapImg(this,'hachativa_lemadaey_haruach/odot_hachativa/vaadat_hapirsumim','over') onmouseout=swapImg(this,'hachativa_lemadaey_haruach/odot_hachativa/vaadat_hapirsumim','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")

document.write("<DIV id='HachativaLemadaeyHatevaLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ HachativaLemadaeyHatevaLayerLeft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||37' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/odot_teva.gif' NAME='odot_teva' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/odot_teva','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/odot_teva','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||40' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/forum_tzeirey_hachativa.gif' NAME='forum_tzeirey_hachativa' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/forum_tzeirey_hachativa','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/forum_tzeirey_hachativa','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||18' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/haosafim_habiyologiyim.gif' NAME='haosafim_habiyologiyim' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/haosafim_habiyologiyim','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/haosafim_habiyologiyim','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||32' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/astrophisica.gif' NAME='astrophisica' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/astrophisica','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/astrophisica','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||16' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/bioetika.gif' NAME='bioetika' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/bioetika','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/bioetika','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||21' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/cheker_hasovev.gif' NAME='cheker_hasovev' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/cheker_hasovev','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/cheker_hasovev','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||19' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/phisica_shel_energyot.gif' NAME='phisica_shel_energyot' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/phisica_shel_energyot','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/phisica_shel_energyot','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||15' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/krinat_hasinchrotron.gif' NAME='krinat_hasinchrotron' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/krinat_hasinchrotron','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/krinat_hasinchrotron','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||20' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/hartzaat_einstein.gif' NAME='hartzaat_einstein' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/hartzaat_einstein','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/hartzaat_einstein','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/projects_new/projects.asp?txt=3||43' TARGET='mainFrame'STYLE='cursor: hand;'><IMG SRC='images/menuebuttons/hachativa_lemadaey_hateva/mifalei_chativa_baavar.gif' NAME='mifalei_chativa_baavar' onmouseover=hideSecondLevelLayers();swapImg(this,'hachativa_lemadaey_hateva/mifalei_chativa_baavar','over') onmouseout=swapImg(this,'hachativa_lemadaey_hateva/mifalei_chativa_baavar','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")

document.write("<DIV id='KsharimBeinLeumiyimLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ KsharimBeinLeumiyimLayerLeft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/relations/relations.asp?file=ticker.asp' TARGET='mainFrame'><IMG SRC='images/menuebuttons/ksharim_bein_leumiyim/odot_veyediot.gif' NAME='odot_veyediot' onmouseover=hideSecondLevelLayers();swapImg(this,'ksharim_bein_leumiyim/odot_veyediot','over') onmouseout=swapImg(this,'ksharim_bein_leumiyim/odot_veyediot','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/academies/academy.asp' TARGET='mainFrame'><IMG SRC='images/menuebuttons/ksharim_bein_leumiyim/akademyot_amitot.gif' NAME='akademyot_amitot' onmouseover=hideSecondLevelLayers();swapImg(this,'ksharim_bein_leumiyim/akademyot_amitot','over') onmouseout=swapImg(this,'ksharim_bein_leumiyim/akademyot_amitot','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/organizations/org.asp?status=inter' TARGET='mainFrame'><IMG SRC='images/menuebuttons/ksharim_bein_leumiyim/irgunim_bein_leumiyim.gif' NAME='irgunim_bein_leumiyim' onmouseover=hideSecondLevelLayers();swapImg(this,'ksharim_bein_leumiyim/irgunim_bein_leumiyim','over') onmouseout=swapImg(this,'ksharim_bein_leumiyim/irgunim_bein_leumiyim','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=kahir' TARGET='mainFrame'><IMG SRC='images/menuebuttons/ksharim_bein_leumiyim/hamerkaz_haakademi_bekahir.gif' NAME='hamerkaz_haakademi_bekahir' onmouseover=hideSecondLevelLayers();swapImg(this,'ksharim_bein_leumiyim/hamerkaz_haakademi_bekahir','over') onmouseout=swapImg(this,'ksharim_bein_leumiyim/hamerkaz_haakademi_bekahir','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")

document.write("<DIV id='HahotzaaLaorLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 100;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ HahotzaaLaorLayerleft + "px; top:"+ MenuTop + "px; width:107px; height:130px;'>")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/about/about.asp?file=about_catalog' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hahotzaa_laor/odot_or.gif' NAME='odot_or' onmouseover=hideSecondLevelLayers();swapImg(this,'hahotzaa_laor/odot_or','over') onmouseout=swapImg(this,'hahotzaa_laor/odot_or','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/catalog/catalog.asp' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hahotzaa_laor/catalog.gif' NAME='catalog' onmouseover=hideSecondLevelLayers();swapImg(this,'hahotzaa_laor/catalog','over') onmouseout=swapImg(this,'hahotzaa_laor/catalog','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A TARGET='mainFrame'><IMG SRC='images/menuebuttons/hahotzaa_laor/pirsumim_tkufatiyim_or.gif' NAME='pirsumim_tkufatiyim_or' onmouseover=ShowSecondLevelLayer('HahotzaaLaorPirsumimLayer','show');swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim_or','over') onmouseout=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim_or','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")
document.write("<DIV id='HahotzaaLaorPirsumimLayer' ONMOUSEOUT=MM_timelineGoto('Timeline1','1');MM_timelinePlay('Timeline1'); ONMOUSEOVER=MM_timelineStop('Timeline1'); style='Z-INDEX: 90;display: none; VISIBILITY: hidden; POSITION: absolute; left:"+ HahotzaaLaorPirsumimLayerLeft + "px; top:"+ HahotzaaLaorPirsumimLayerTop + "px; width:107px; height:130px;'>	")
document.write("	<TABLE BORDER='0' CELLSPACING='0' CELLPADDING='0' ALIGN='center'>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/pirsumim/pirsumim.asp?egeret_type=1' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hahotzaa_laor/pirsumim_tkufatiyim/igeret_or.gif' NAME='igeret_or' onmouseover=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim/igeret_or','over') onmouseout=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim/igeret_or','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/pirsumim/pirsumim.asp?egeret_type=2' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hahotzaa_laor/pirsumim_tkufatiyim/forum_or.gif' NAME='forum_or' onmouseover=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim/forum_or','over') onmouseout=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim/forum_or','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/pirsumim/pirsumim.asp?egeret_type=3' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hahotzaa_laor/pirsumim_tkufatiyim/bulletin_or.gif' NAME='bulletin_or' onmouseover=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim/bulletin_or','over') onmouseout=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim/bulletin_or','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("		<TR><TD ALIGN='center'><A HREF='hp.asp?file=asp/pirsumim/pirsumim.asp?egeret_type=4' TARGET='mainFrame'><IMG SRC='images/menuebuttons/hahotzaa_laor/pirsumim_tkufatiyim/hadoch_hashnati_or.gif' NAME='hadoch_hashnati_or' onmouseover=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim/hadoch_hashnati_or','over') onmouseout=swapImg(this,'hahotzaa_laor/pirsumim_tkufatiyim/hadoch_hashnati_or','out') ALT='' BORDER='0'></A></TD></TR>")
document.write("	</TABLE>")
document.write("</div>")

