var myControls = {
    init: function() {
        
        // Set input text
        jQuery('.inputText input').each(function(i,obj){
           try{
               if(obj.value == '') { obj.value = myControls.text; }
               jQuery(obj).focus(function() {
                   if (this.value == myControls.text) {
                       this.value = '';
                       return;
                   }
                   return;
               });
               jQuery(obj).blur(function() {
                   if (this.value == '') {
                       this.value = myControls.text;
                   }
                   return;
               });
           }catch(e) {console.log(e);}
        });
    }
};

