var defineUrlPath = "http://www.skoolbuz.com/_module/";

$(function() {

          $('.error').hide();
          $('.memberLogin').hide();
          $('.memberTeacher').hide();
          $('.memberStudent').hide();
          $('input.text-input').css({backgroundColor:"#FFFFFF"});
          $('input.text-input').focus(function(){
            $(this).css({backgroundColor:"#FFFFFF"});
          });
          $('input.text-input').blur(function(){
            $(this).css({backgroundColor:"#FFFFFF"});
          });

          //Profile Form
          $(".smem_group_id_t").click(function(){ $(".memberTeacher").show();$(".memberStudent").hide();});//End Teacher Form
          $(".smem_group_id_s").click(function(){ $(".memberStudent").show(); $(".memberTeacher").hide();});//End Student Form

          $('.inputFormSearchName').toggle(
                  function(){ $( this ).val(''); },
                  function(){ $( this ).val('พิมพ์ชื่อที่ต้องการค้นหาที่นี่'); }
          );


          $('.searchBoxAnimation img').click(function(){

                  $('.text-input').val('');
                  $(".searchBoxAnimation img").hide();
                  $(".searchBoxAnimation img").remove();
                  $('.text-input').focus();
          });

});





