﻿function swichSE()
{
    if(document.getElementById('swichPad').className == 'withStyle')
    {
        document.getElementById('swichPad').className = 'withEmotion';
    }
    else
    {
        document.getElementById('swichPad').className = 'withStyle';
    }
}

