/*
     **************************************************************************************
     *  Site: www.esteticaisabelsanz.com                          selectorgrafic_clas.js  *
     *  Centro de Estetica Isabel Sanz - Valderrobres                                     *
     *  Xavi Agut - Enginyer Tčcnic Informātic                                            *
     **************************************************************************************
*/

/*
     **************************************************************************************
      Funcionalitat per a un selector grāfic
     **************************************************************************************
*/

function clas_selectorgrafic(nomcapanormal,nomcaparesaltar)
{
 this.nomcapanor = nomcapanormal;
 this.nomcapares = nomcaparesaltar;
  /* Indicacio del navegador */
 this.ie = (navigator.appName == "Microsoft Internet Explorer");

 this.visualitzarresaltat = visualitzarresaltat;
 this.novisualitzarresaltat = novisualitzarresaltat;
 this.visualitzarnormal = visualitzarnormal;
 this.novisualitzar = novisualitzar;
 this.inicialitzar = inicialitzar;

}

/*
  ============================
  FUNCIO: Visualitzar resaltat
  ============================
*/

function visualitzarresaltat()
{
 if (this.ie)
    {
     $("#"+this.nomcapares).show();
    }
 else
    {
     $("#"+this.nomcapares).fadeIn("slow");
    }

 return true;
}


/*
  =================================
  FUNCIO: Llevar l'element resaltat
  =================================
*/

function novisualitzarresaltat()
{
 if (this.ie)
    {
     $("#"+this.nomcapares).hide();
    }
 else
    {
     $("#"+this.nomcapares).fadeOut("slow");
    }

 return true;
}

/*
  ==================================
  FUNCIO: Visualitzar element normal
  ==================================
*/

function visualitzarnormal()
{
 if (this.ie)
    {
     $("#"+this.nomcapanor).show();
    }
 else
    {
     $("#"+this.nomcapanor).fadeIn("slow");
    }

 return true;
}

/*
  ================================
  FUNCIO: No visualitzar l'element
  ================================
*/

function novisualitzar()
{
 if (this.ie)
    {
     $("#"+this.nomcapares).hide();
     $("#"+this.nomcapanor).hide();
    }
 else
    {
     $("#"+this.nomcapares).fadeOut("slow");
     $("#"+this.nomcapanor).fadeOut("slow");
    }

 return true;
}

/*
  ==============================
  FUNCIO: Inicialitzar l'element
  ==============================
*/

function inicialitzar()
{
 if (this.ie)
    {
     $("#"+this.nomcapares).hide();
     $("#"+this.nomcapanor).show();
    }
 else
    {
     $("#"+this.nomcapares).fadeOut("slow");
     $("#"+this.nomcapanor).fadeIn("slow");
    }
}

