 $(document).ready(function() {
        $('#email').blur(function(){
            if(!this.value)
                this.value='Enter Email or Account ID';
            });
         $('#email').focus(function(){
            if(this.value=='Enter Email or Account ID')
                this.value='';
            });
         $('#password').blur(function(){
            if(!this.value)
                this.value='password';
            })
         $('#password').focus(function(){
            if(this.value=='password')
                this.value='';
            });
    body = $('body')[0];
         $(body).find('div#email-div').simpletip({position: 'top', offset: [-100, -130]
                ,content: 'Enter your Email or Account ID in this field.'
                });
         $(body).find('div#password-div').simpletip({position: 'top', offset: [-100, -130]
                ,content: 'Enter your password in this field.'
                });

});






