// return a command-line (GET URL Location.search) parameter
function getQueryParam(sName,sSearchLocation) {
    var sSearch=sSearchLocation; // copy value, just in case. i dont want to manipulate the real location.href by mistake...
    if (typeof(sSearch    )=='undefined') sSearch=document.location.search;
    if (typeof(sSearch.search)=='string') sSearch=sSearch.search;  // in case we got a Location object
    sSearch=sSearch.toString().replace(/^\?/,''); // remove first ?
    sSearch='&'+sSearch+'&';
    
    var res=sSearch.match(new RegExp('&'+sName+'=([^&]*)','i'));
    if (res && res.length>1) {
        return res[1];
    }else{
        return null;
    }
}

// return html content for the menu
function createHTMLMenu(aMenu) {
	var s,i,j,k;
	var myurl;
	var stext;
	var shref;
  var where = new Array();
  var myurl=location.href;
	var atarget;
  for (i=0;i<aMenu.length-1;i++) {
    if (aMenu[i].href==myurl) {
	    where[0]=i;
	  	break;
	  }
		if (typeof(aMenu[i].aLinks)!=="undefined") {
 	  	for (j=0;j<aMenu[i].aLinks.length-1;j++) {
   		  if (aMenu[i].aLinks[j].href==myurl) {
   		    where[0]=i;
   		    where[1]=j;
   				break;
   			}
				if (typeof(aMenu[i].aLinks[j].aLinks)!=="undefined") {
   			  for (k=0;k<aMenu[i].aLinks[j].aLinks.length-1;k++) {
   		      if (aMenu[i].aLinks[j].aLinks[k].href==myurl) {
   		        where[0]=i;
     		      where[1]=j;
     					where[2]=k;
     				  break;
     			  }
     	  	} // for k
				} // defined k
   		} // for j
		} // defined j
  } // for i
  s="<ul>";
    for (i=0;i<aMenu.length-1;i++) {
	    stext=aMenu[i].text;
		  shref=aMenu[i].href;
      if (typeof(aMenu[i].aLinks)=="undefined") {
				s+='<li><a href="' + shref + '"';
			  if (myurl==aMenu[i].href) s+=' class="current"';
	      if (typeof(aMenu[i].target)!="undefined") s+=' target="_blank"';
				s+='>' + stext + '</a></li>';
			}
			else {
			  s+= '<li class="open">';
				s+='<a href="' + shref + '"';
			  if (myurl==aMenu[i].href) s+=' class="current"';
	      if (typeof(aMenu[i].target)!="undefined") s+=' target="_blank"';
				s+='>' + stext + '</a><ul>';
  	  	for (j=0;j<aMenu[i].aLinks.length-1;j++) {
    		  stext=aMenu[i].aLinks[j].text;
    			shref=aMenu[i].aLinks[j].href;
          if (typeof(aMenu[i].aLinks[j].aLinks)=="undefined") {
    				s+='<li><a href="' + shref + '"';
    			  if (myurl==aMenu[i].aLinks[j].href) s+=' class="current"';
    	      if (typeof(aMenu[i].aLinks[j].target)!="undefined") s+=' target="_blank"';
    				s+='>' + stext + '</a></li>';
    			}
    			else {
    			  s+=((j==where[1]) && (i==where[0]))? '<li class="open">':'<li class="hidden">';
	  				s+='<a href="' + shref + '"';
	  		    if (myurl==aMenu[i].aLinks[j].href) s+=' class="current"';
	          if (typeof(aMenu[i].aLinks[j].target)!="undefined") s+=' target="_blank"';
		  		  s+='>' + stext + '</a><ul>';
    			  for (k=0;k<aMenu[i].aLinks[j].aLinks.length-1;k++) {
        		  stext=aMenu[i].aLinks[j].aLinks[k].text;
        			shref=aMenu[i].aLinks[j].aLinks[k].href;
     				  s+='<li><a href="' + shref + '"';
							if (myurl==aMenu[i].aLinks[j].aLinks[k].href) s+=' class="current"';
	            if (typeof(aMenu[i].aLinks[j].aLinks[k].target)!="undefined") s+=' target="_blank"';
						  s+='>' + stext + '</a></li>';
      	  	} // for 3
						s+="</ul></li>"
					} // defined 3
    		} // for 2
				s+="</ul></li>"
			} // defined 2
    } // for 1
	s+="</ul>";
	return s;
}

var aMenu = [
  { href: "http://www.free.org.il/movies/h.html",
    text: "סרטים מהארץ",
    aLinks: [
      { href: "http://www.free.org.il/movies/h/general.html",
        text: "כללי",
				aLinks: [
				  { href: "http://www.free.org.il/movies/h/general/endoftheworld.html",
				    text: "סוף העולם בשבילם"},
				  { href: "http://www.free.org.il/movies/h/general/no_freedom.html",
  				  text: "אשליית הטבע"},
  				{ href: "http://www.free.org.il/movies/h/general/animal_rights.html",
  				  text: "זכויות בעלי חיים"},
  				{ href: "http://www.free.org.il/movies/h/general/barbarim.html",
  				  text: "אם הם ברברים אז מה אנחנו?"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/h/vegdiet.html",
        text: "תעשיות המזון מהחי",
				aLinks: [
				  { href: "http://www.free.org.il/movies/h/vegdiet/cowmurder.html",
				    text: "בשר פרות"},
				  { href: "http://www.free.org.il/movies/h/vegdiet/sheepmurder.html",
  				  text: "בשר כבשים"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/chickenmurder.html",
  				  text: "בשר תרנגולים"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/fishmurder.html",
  				  text: "בשר דגים"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/egg.html",
  				  text: "ביצים"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/milk.html",
  				  text: "חלב"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/veal.html",
  				  text: "עגל חלב, הסיפור האמיתי"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/pitum.html",
  				  text: "פיטום אווזים"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/transport.html",
  				  text: "הובלות מאוסטרליה"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/nuggets.html",
  				  text: "נאגטס"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/same-suffer.html",
  				  text: "שווים בכאב"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/life_story.html",
  				  text: "יד מלטפת - יד פוגעת"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/live_fast.html",
  				  text: "חיים מהר, מתים צעירים"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/eatyourdog.html",
  				  text: "5 סיבות טובות לאכול את הכלב שלך"},
  				{ href: "http://www.free.org.il/movies/h/vegdiet/no-dif.html",
  				  text: "מה ההבדל? (סרטון)"},
  				{ href: "http://www.free.org.il/movies/No_Difference/index.html",
  				  text: "מה ההבדל? (מצגת)"},
  				{ href: "http://www.animal-tv.org/html/movie_flash_10_03_rutine.html",
  				  text: "יום של שיגרה",
						target: true},
  				{ href: "http://www.animal-tv.org/html/movie_flash_06_01_fish_feel.html",
  				  text: "דגים שוברים שתיקה",
						target: true},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/h/activity.html",
        text: "פעילות",
				aLinks: [
				  { href: "http://www.free.org.il/movies/h/activity/shan2007.html",
						text: "שב&quot;י בפסטיבל שנטיפי 2007"},
				  { href: "http://www.free.org.il/movies/h/activity/act-shevi05.html",
						text: "פעילות לזכויות בעלי-חיים 2005"},
				  { href: "http://www.free.org.il/movies/h/activity/bombamela06.html",
						text: "בומבמלה 2006-פעיל מדבר בבמה פתוחה"},
				  { href: "http://www.free.org.il/movies/h/activity/bombamela05.html",
						text: "שב&quot;י בפסטיבל בומבמלה 2005"},
				  { href: "http://www.free.org.il/movies/h/activity/oct2nd05.html",
						text: "שב&quot;י ביום ההזדהות עם בעלי החיים במשקים 2005"},
				  { href: "http://www.free.org.il/movies/h/activity/lectures.html",
						text: "הרצאות זכויות בעלי חיים"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/h/vivisection.html",
        text: "ניסויים בבעלי חיים",
				aLinks: [
				  { href: "http://www.free.org.il/movies/h/vivi/briches.html",
				    text: "סיפורו של בריצ'ס"},
				  { href: "http://www.free.org.il/movies/h/vivi/malish_isav.html",
  				  text: "סיפורו של מאליש"},
  				{ href: "http://www.free.org.il/movies/h/vivi/iams.html",
  				  text: "חשיפה ממעבדות של חברת &quot;יוקנובה&quot;"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/h/ad.html",
        text: "פרסומות",
				aLinks: [
				  { href: "http://www.free.org.il/movies/h/ad/veg.html",
				    text: "צמחונות מצילה חיים"},
				  { href: "http://www.free.org.il/movies/h/ad/victims.html",
  				  text: "הקורבנות הרבים ביותר"},
  				{ href: "http://www.free.org.il/movies/h/ad/forget.html",
  				  text: "עזוב אותך מבשר"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/h/other.html",
        text: "שונות",
				aLinks: [
				  { href: "http://www.free.org.il/movies/h/other/vegan_salami_survey.html",
  				  text: "סקר - סלאמי טבעוני, טעים?"},
				  { href: "http://www.free.org.il/movies/h/other/kaparot.html",
				    text: "כפרות בתרנגולות"},
          {end:"end of items"}
				]},
      {end:"end of items"}
  ]},
  { href: "http://www.free.org.il/movies/e.html",
    text: "סרטים מחוץ לארץ",
    aLinks: [
      { href: "http://www.free.org.il/movies/e/general.html",
        text: "כללי",
				aLinks: [
				  { href: "http://www.free.org.il/movies/e/general/world.html",
				    text: "גן עדן זה כאן"},
				  { href: "http://www.free.org.il/movies/e/general/natural.html",
  				  text: "בשר אינו טבעי"},
  				{ href: "http://www.free.org.il/movies/e/general/freeme.html",
  				  text: "Free Me"},
  				{ href: "http://video.nbc4.com/player/?id=136474",
  				  text: "צמחונות - NBC",
						target: true},
  				{ href: "http://www.free.org.il/movies/e/general/ode.html",
  				  text: "שיר תהילה לבעלי-החיים"},
				  { href: "http://www.free.org.il/movies/e/general/earthlings.html",
				    text: "earthlings"},
  				{ href: "http://www.free.org.il/movies/e/general/carl_lewis.html",
  				  text: "ריאיון עם האתלט קארל לואיס (מתורגם)"},
  				{ href: "http://www.free.org.il/movies/e/general/cruelty.html",
  				  text: "אכזריות"},
  				{ href: "http://www.peta2.com/alp/index.asp",
  				  text: "שחרור בעלי-חיים - מצגת",
						target: true},
				  { href: "http://www.free.org.il/movies/e/general/tom2.html",
				    text: "הטיעון לזכויות בעלי חיים"},
				  { href: "http://www.free.org.il/movies/e/general/tom.html",
				    text: "הפילוסופיה של זכויות בעלי-חיים"},
  				{ href: "http://www.animalaid.org.uk/h/f/CAMPAIGNS/blog//4//?be_id=5",
  				  text: "בחרו בחיים - עברו לצמחונות",
						target: true},
  				{ href: "http://www.free.org.il/movies/e/general/italian.html",
  				  text: "שחרור בעלי-חיים - קליפ באיטלקית (מתורגם)"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/e/vegdiet.html",
        text: "תעשיות המזון מהחי",
				aLinks: [
				  { href: "http://www.free.org.il/movies/e/vegdiet/cow_murder.html",
				    text: "רצח פרות"},
				  { href: "http://www.free.org.il/movies/e/vegdiet/cow_murder2.html",
  				  text: "רצח פרות2"},
				  { href: "http://www.free.org.il/movies/e/vegdiet/kosher_slaughter.html",
  				  text: "שחיטה 'כשרה'"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/pig_murder.html",
  				  text: "רצח חזירים"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/pig_abuse.html",
  				  text: "מצלמה נסתרת בחוות חזירים"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/meetmeat.html",
  				  text: "פגוש את הבשר שלך"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/prepared.html",
  				  text: "איך מכינים בשר"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/truthordairy.html",
  				  text: "אמת או חלב (מתורגם)"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/meatfreemedia_nz.html",
  				  text: "משקים מתועשים - ניו זילנד"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/chew.html",
  				  text: "20 סיבות לעבור לצמחונות (מתורגם)"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/transport2.html",
  				  text: "Some Lie Dying (מתורגם)"},
  				{ href: "http://www.free.org.il/movies/e/vegdiet/meatrix.html",
  				  text: "המיטריקס (מתורגם)"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/e/wear.html",
        text: "לבוש",
				aLinks: [
				  { href: "http://www.free.org.il/movies/e/wear/leather.html",
				    text: "עורות"},
				  { href: "http://www.free.org.il/movies/e/wear/wool.html",
  				  text: "צמר"},
  				{ href: "http://www.free.org.il/movies/e/wear/furfull.html",
  				  text: "פרוות - גירסא מלאה"},
  				{ href: "http://www.free.org.il/movies/e/wear/furshort.html",
  				  text: "פרוות - גירסא מקוצרת"},
  				{ href: "http://www.free.org.il/movies/e/wear/canada_seal.html",
  				  text: "פרוות - כלבי ים"},
  				{ href: "http://www.free.org.il/movies/e/wear/pam_fur.html",
  				  text: "פמלה אנדרסון - נגד פרוות"},
  				{ href: "http://www.free.org.il/movies/e/wear/pam_leather.html",
  				  text: "פמלה אנדרסון - נגד עורות (מתורגם)"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/e/activity.html",
        text: "פעילות",
				aLinks: [
				  { href: "http://www.free.org.il/movies/e/activity/pigs_rescue.html",
				    text: "שחרור חזירים"},
				  { href: "http://www.free.org.il/movies/e/activity/chickens_rescue.html",
  				  text: "שחרור תרנגולות"},
  				{ href: "http://www.free.org.il/movies/e/activity/shac_06_07.html",
  				  text: "שאק - סיגרו את HLS"},
  				{ href: "http://www.free.org.il/movies/e/activity/lb.html",
  				  text: "שחרור עכשיו"},
  				{ href: "http://www.free.org.il/movies/e/activity/tfa3.html",
  				  text: "הזמן לפעול"},
  				{ href: "http://www.free.org.il/movies/e/activity/sweden_struggle.html",
  				  text: "פעילות בשוודיה (מתורגם)"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/e/vivisection.html",
        text: "ניסויים בבעלי-חיים",
				aLinks: [
				  { href: "http://www.free.org.il/movies/e/vivi/paradiselost.html",
				    text: "גן העדן האבוד (מתרגום)"},
				  { href: "http://www.free.org.il/movies/e/vivi/cat.html",
				    text: "והחתול נהנה מזה? (מתרגום)"},
				  { href: "http://www.free.org.il/movies/e/vivi/animal_testing.html",
				    text: "ניסויים בבעלי-חיים"},
				  { href: "http://www.free.org.il/movies/e/vivi/bad_medicine.html",
  				  text: "תרופה רעה"},
  				{ href: "http://www.free.org.il/movies/e/vivi/covance.html",
  				  text: "מצלמה נסתרת במעבדת COVANCE"},
  				{ href: "http://www.free.org.il/movies/e/vivi/professor.html",
  				  text: "ניסויים בתקופה המודרנית"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/e/ad.html",
        text: "פרסומות",
				aLinks: [
				  { href: "http://www.free.org.il/movies/e/ad/casey.html",
				    text: "פרסומת לצמחונות עם קייסי אפלק"},
				  { href: "http://www.free.org.il/movies/e/ad/if_only_you_knew.html",
				    text: "אם רק הייתם יודעים"},
				  { href: "http://www.free.org.il/movies/e/ad/fur.html",
				    text: "מה אם היו הורגים אותך בשביל פרווה?"},
				  { href: "http://www.free.org.il/movies/e/ad/peta_biology.html",
  				  text: "ביולוגיה: מדע החיים, לא מדע המוות"},
  				{ href: "http://www.free.org.il/movies/e/ad/ida.html",
  				  text: "פרסומת לטבעונות עם קנת' וויליאמס"},
  				{ href: "http://www.free.org.il/movies/e/ad/apa.html",
  				  text: "פרסומת נגד נטישת כלבים"},
          {end:"end of items"}
				]},
      { href: "http://www.free.org.il/movies/e/other.html",
        text: "שונות",
				aLinks: [
				  { href: "http://www.free.org.il/movies/e/other/pig_slaughter.html",
  				  text: "שחיטת חזיר בלאוס"},
  				{ href: "http://www.free.org.il/movies/e/other/inyourhands.html",
  				  text: "עתידם בידיכם (מתרגום)"},
  				{ href: "http://www.free.org.il/movies/e/other/bull-fight.html",
  				  text: "מלחמות שוורים"},
          {end:"end of items"}
				]},
      {end:"end of items"}
  ]},
  { href: "http://www.free.org.il/movies/ark.html",
    text: "כל הסרטים"},
  {end:"end of menus"}
];

// add the menu to screen
var oMenu=document.getElementById("right-nav");
if (oMenu) {
	oMenu.innerHTML = createHTMLMenu(aMenu);
}
