/*====== custom IBW code ======*/

//
// Observe the sidebar register field
Event.observe(window, 'load', function() {
    // If the field exists and it is blank
    if ($('emailEntrySide')) {
        if ($('emailEntrySide').value == '') {
            $('emailEntrySide').value = 'Your email...';
            
            Event.observe('emailEntrySide', 'focus', function() {
                if ($('emailEntrySide').value == 'Your email...') {
                    $('emailEntrySide').value = '';
                }
            });
        }
    }
});