﻿$(document).ready(function() {
    
    // For the site search field
    $('#q').bind('focus', function() { if (this.value == 'Search the site') this.value = ''; });
    $('#q').bind('blur', function() { if (this.value == '') this.value = 'Search the site'; });

    // For the newsletter field
    $('#newsletteremail').bind('focus', function() { if (this.value == 'Enter email here') this.value = ''; });
    $('#newsletteremail').bind('blur', function() { if (this.value == '') this.value = 'Enter email here'; });
   
});