﻿

/*function UserNameFocus()
    {
        if(document.getElementById('txtUserName').value =='USUARIO' || document.getElementById('txtUserName').value =='usuario')
        {
            document.getElementById('txtUserName').value='';
        }
    }
   function UserNameBlur()
    {
        if(document.getElementById('txtUserName').value =='USUARIO' || document.getElementById('txtUserName').value =='usuario' || document.getElementById('txtUserName').value =='')
        {
            document.getElementById('txtUserName').value='USUARIO';
        }
    }*/
    function PasswordFocus()
    {
        if(document.getElementById('txtPassword').value =='CONTRASEÑA' || document.getElementById('txtPassword').value =='contraseña')
        {
            document.getElementById('txtPassword').value='';
        }
    }
    function PasswordBlur()
    {
        if(document.getElementById('txtPassword').value =='CONTRASEÑA' || document.getElementById('txtPassword').value =='contraseña' || document.getElementById('txtPassword').value =='')
        {
            document.getElementById('txtPassword').value='CONTRASEÑA';
        }
    }
    
    function OverButton(numero)
    {   
        if(numero == 1 || numero == '1')
        {
            document.getElementById('icono_1').style.backgroundPosition ='bottom';
            document.getElementById('titulo_1').className='musico_banda_over';
            document.getElementById('texto_1').className='crea_espacio_over';
      
        }
        if(numero == 2 || numero == '2')
        {
            document.getElementById('icono_2').style.backgroundPosition ='bottom';
            document.getElementById('titulo_2').className='club_fans_over';
            document.getElementById('texto_2').className='arma_over';
      
        }
         if(numero == 3 || numero == '3')
        {
            document.getElementById('icono_3').style.backgroundPosition ='bottom';
            document.getElementById('titulo_3').className='mi_usuario_over';
            document.getElementById('texto_3').className='explora_over';
      
        }
    }
    function OutButton(numero)
    {
        if(numero == 1 || numero == '1')
        {
            document.getElementById('icono_1').style.backgroundPosition ='top';
            document.getElementById('titulo_1').className='musico_banda';
            document.getElementById('texto_1').className='crea_espacio';
        }
    
        if(numero == 2 || numero == '2')
        {
            document.getElementById('icono_2').style.backgroundPosition ='top';
            document.getElementById('titulo_2').className='club_fans';
            document.getElementById('texto_2').className='arma';
        }
    
        if(numero == 3|| numero == '3')
        {
            document.getElementById('icono_3').style.backgroundPosition ='top';
            document.getElementById('titulo_3').className='mi_usuario';
            document.getElementById('texto_3').className='explora';
        }
    }