$('document').ready(function(){   var ua = navigator.userAgent.toLowerCase();   var sSpeed = '';   isIE = (ua.indexOf("msie") != -1 && ua.indexOf("opera") == -1);   if (!isIE) {      var sSpeed = 'fast';   }   $('.inpt').focus(function(){      $(this).addClass('inpthover');      var pos = $(this).position();      $(this).next('.a47').css('top', pos.top).css('left', pos.left + $(this).width() + 20).show(sSpeed);   });   $('.inpt').blur(function(){      $(this).removeClass('inpthover');      $(this).next('.a47').hide();;   });   $('.itxta').focus(function(){      $(this).parent().addClass('txtahover');      var pos = $(this).position();      $(this).parent().next('.a47').css('top', pos.top).css('left', pos.left + $(this).width() + 20).show(sSpeed);   });   $('.itxta').blur(function(){      $(this).parent().removeClass('txtahover');      $(this).parent().next('.a47').hide();;   });   $(".jquery-selectbox").selectbox();   $(".a36 li:last-child").addClass('last-child');});
