Event.observe ( window, 'load', function ( )									  
{
	
	if ( $('gw-search-box') )
	{
		Event.observe ( $('gw-search-box'), 'focus', function ( )									  
		{
			cClear ( $('gw-search-box') );
		});
	}
	
	if ( $('gw-subscribe-box') )
	{
		Event.observe ( $('gw-subscribe-box'), 'focus', function ( )									  
		{
			cClear ( $('gw-subscribe-box') );
		});
		
		Event.observe ( $('gw-subscribe-box'), 'submit', function ( )									  
		{
			window.open('http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1328844', 'popupwindow', 'scrollbars=yes,width=550,height=520');
			return true;
		});
	}
	
});

/* Clear a text box on focus */
function cClear ( $_0 )
{
	$_0.value = '';
}