//////////////////////////////////////////////////////////////////////////////////////////////

$(function(){
     $('.qtip').each(function(){
          var title = $(this).attr('title');
          if ('' == title)
          {
               return;
          }
          $(this).qtip({
             content: title,
             hide: {
                fixed: true
             },
             position: {
                    corner:{
                       tooltip: 'leftMiddle',
                       target: 'rightMiddle'
                    }
             },
             style: {
                name: 'light', //dark | light | green | red | blue | cream
                width: {min: 150, max: 450},
                border: {width: 1, radius:5, color:'#464646'},
                tip: true
             }
           });
          $(this).qtip({
             content: title,
             hide: {
                fixed: true
             },
             position: {
                    corner:{
                       tooltip: 'leftMiddle',
                       target: 'rightMiddle'
                    }
             },
             style: {
                name: 'light', //dark | light | green | red | blue | cream
                width: {min: 150, max: 450},
                border: {width: 1, radius:5, color:'#464646'},
                tip: true
             },
             show: {
                when: {
                   event: 'focus'
                }
             },
             hide: {
                when: {
                   event: 'blur'
                }
             }
           });
           $(this).removeAttr('title');
     });

     $("#reg").validate();
});
//////////////////////////////////////////////////////////////////////////////////////////////