﻿$(document).ready(function()
{
 menuSub = $("body");
 var a, b;
var k=0;
 menuSub.find("li.level-section").each(function(i)
 {  



  
 if($(this).find('ul.dfwp-list').length) 
 {
  
 }
 else
 {
 
 
  if($(this).find('a').text() != "About CSC" && $(this).find('a').text() != "إنجازاتنا" && $(this).find('a').text() != "خططنا" && $(this).find('a').text() != "اللجنة الوطنية للتعليم العالمي والدولي" && $(this).find('a').text() != "خدماتنا" && $(this).find('a').text() != 'عن المجلس' )
  {
  
  href= $(this).find('a').attr('href');
  atext = $(this).find('a').text();
  
  
  u = $(this).find('a').attr('href');
  to = u.indexOf("/Pages");
  u = u.substring(0, to);
  var count = getCount(u);
  
  if(count > 2)
  {
   //a = a+ tx + ' ' + u  + '<br>';
   appendtext = '<li class=\"level-item-pos level-item\"><span class=\"headermarker\"><b><a style=\"FONT-FAMILY: Tahoma; COLOR: #420408 !important; FONT-SIZE: 10pt;\" href='+href+'>'+atext+'</a></b></span></li>'
if($(this).find('a').text() == 'قائمة اللجان الوطنية')
{
tag = $(this).prev().prev().find('ul.dfwp-list').last();
   tag.append(appendtext);
}
else
{
tag = $(this).prev().find('ul.dfwp-list').last();
   tag.append(appendtext);
}
   $(this).css('{float:none}', '{width:75%}', '{list-style: none}', '{color: #fff}');
   $(this).remove();
  }
  }
 }

});
function getCount(u)
{
var count = 0;
menuSub.find("li.level-section").each(function(j)
  {
   $(this).find('a').each(function(k)
   {
    u1 = $(this).attr('href');
     if(u1.indexOf(u) != -1)
     {
     

      /* if($(this).find('a').text() == "خططنا")
      {
       b = b + "Current URL --> " + $(this).find('a').attr('href')  + " Compared URL --> "+ u + '<br>';
      } */
      if(k==10)
      return (false);
      count = count+1;
     }
    });
   
  });
  
  return count;
  }
//document.write(a);

});
