jQuery(document).ready(function(){
  $('input[type="text"], input[type="password"]').addClass('inputText');
  $('.page_wrapper').css('min-height',$(window).height());
});






jQuery(document).ready(function(){
  jQuery('.login').each(function(){
    box_height = 0;
    jQuery(this).find('.logBox').each(function(){
    if (jQuery(this).height() > box_height){
        box_height = jQuery(this).height();
          }
      })
      jQuery(this).find('.logBox').css({'height':box_height+'px'})
   })
})



