$(document).ready(
	function()
	{
		/*
		Show and hide the input default text
		*/
		$('.subscribe-textbox').focus(function() {
		// The title matches the value, so remove the text
		if($(this).val() == $(this).attr('title'))
		{
		$(this).val('');
		$(this).parent().prepend('<span class="subscribe-textbox-temporary" style="pointer-events:none;position:absolute;top:' + ($(this).position().top + 3) + 'px;left:' + ($(this).position().left + 4) + 'px;">' + $(this).attr('title') + '</span>');
		}
		});

		$('.subscribe-textbox').blur(function() {
		$('.subscribe-textbox-temporary').remove();
		// The title matches the value, so remove the text
		if($(this).val() == '')
		{
		$(this).val($(this).attr('title'));
		}
		});

		$('.subscribe-textbox').keydown(function() {
		$('.subscribe-textbox-temporary').remove();
		});
	}
);
