jQuery(function () 
{
	jQuery('#searchForm label, #subscriptionOptions label').click(function ()
	{
		jQuery(this).css('display', 'none');
		jQuery(this).parent().find('input').focus();
	});


	jQuery('#searchForm input, #subscriptionOptions input').focus(function ()
	{
		jQuery(this).parent().find('label').css('display', 'none');
	}).blur (function ()
	{
		if (jQuery(this).val() == '')
		{
			jQuery(this).parent().find('label').css('display', 'block');
		}
	});
});
