jQuery(document).ready(function () {
    jQuery('#footer-content .top .newsletter input.text').click(function () { if (this.value == 'Enter your email here') this.value = ''; });
    jQuery('#footer-content .top .newsletter input.text').blur(function () { if (this.value == '') this.value = 'Enter your email here'; });

    jQuery('#practitioner-tabs').tabs();
});