/*
     Codi       : INC_DDFMeP01.js
     Descripció : Declaracio/Definicio Funcions Menu Principal JavaScript
*/

// ===============================================================================
// -------------------------------------------------------------------------------

     var int_ConFor01=1;
     var str_ValTmp01="";
     var int_ConWhi01=1;

     var obM_TitMen01 = new Array(5); // Titol Menu
     var obM_LnkMen01 = new Array(5); // Lnk
     var obM_IdeMen01 = new Array(5); // Identificador
     var int_MaxArr01 = 6;
/* Titols */

     obM_TitMen01[1] = "Inici";
     obM_TitMen01[2] = "Grup";
     obM_TitMen01[3] = "Agenda";
     obM_TitMen01[4] = "Repertori";
     obM_TitMen01[5] = "AURA";
     obM_TitMen01[6] = "Inici";


/* Link */

     obM_LnkMen01[1] = "index02.php";
     obM_LnkMen01[2] = "PHP_grup01.php";
     obM_LnkMen01[3] = "PHP_Agenda01.php";
     obM_LnkMen01[4] = "PHP_Repertori01.php";
     obM_LnkMen01[5] = "http://www.auracustomguitars.com";
     obM_LnkMen01[6] = "index02.php";


/* Identificadors */

     obM_IdeMen01[1] = "Ide_nd";         // Identificador no_definit (no_deplega submenu
     obM_IdeMen01[2] = "Ide_nd";
     obM_IdeMen01[3] = "Ide_nd";
     obM_IdeMen01[4] = "Ide_nd";
     obM_IdeMen01[5] = "Ide_nd";


// -------------------------------------------------------------------------------
// ===============================================================================



// ===============================================================================
// -------------------------------------------------------------------------------
function ddfscp_MenPri01()
{

          document.writeln('<table align="center"  class="TAULA_MENPRI_01" border="0" cellspacing="1" cellpadding="1" >' );

               document.writeln( '<tr>' );



          var int_ConFor01=1;
          for ( int_ConFor01=1;int_ConFor01 <= int_MaxArr01; int_ConFor01++ )
          {
               if ( int_ConFor01 == 1 )
                              {                                   

               str_ValTmp01 = 
               ' <td width="60px"> ' +
               ' <a class="LINK_DESACTIVAT_INICI_01" ' +
               ' onmouseover=this.className="LINK_ACTIVAT_INICI_01" ' +
               ' onmouseout=this.className="LINK_DESACTIVAT_INICI_01" ' +
               ' target="IFr_PagIni02" ' +
               ' title="' + obM_TitMen01[int_ConFor01] + '"' +
               ' href="'  + obM_LnkMen01[int_ConFor01] + '">' + obM_TitMen01[int_ConFor01] + 
               ' </a>' + 
               ' </td>';
               }
               else
               {                                   
               str_ValTmp01 = 
               ' <td width="60px"> ' +
               ' <a class="LINK_DESACTIVAT_01" ' +
               ' onmouseover=this.className="LINK_ACTIVAT_01" ' +
               ' onmouseout=this.className="LINK_DESACTIVAT_01" ' +
               ' target="IFr_PagIni02" ' +
               ' title="' + obM_TitMen01[int_ConFor01] + '"' +
               ' href="'  + obM_LnkMen01[int_ConFor01] + '">' + obM_TitMen01[int_ConFor01] + 
               ' </a>' + 
               ' </td>';
               }
               document.writeln ( str_ValTmp01 );

           }    

               document.writeln( '</tr>' );


          document.writeln( '</table>' );
}
// ddfscp_MenPri01 ---------------------------------------------------------------
// ===============================================================================







