jQuery().ready( function()
{

		$('#head-keepintouch').hide();
	$("#subscribe label").hide();
	$("#subscribe input.txt").focus(function()
	{
		$(this).addClass("focus").removeClass("blur");
		var value = $(this).attr("title");
		if($(this).val() == value)
		{
			$(this).val("");
		}
	}).blur(function()
	{
		$(this).addClass("blur").removeClass("focus");
		var value = $(this).attr("title");
		if($(this).val() == "")
		{
			$(this).val(value);
		}
	}).val(function()
	{
		return $(this).attr("title");
	}).addClass("blur");
	
	
	

	$('.keepmeintouch').click(function(){
	$('#head-keepintouch').show();
	return false;
	});

	
	$('#head-keepintouch .btn-cancel').click(function(){
	$('#head-keepintouch').hide();
	return false;
	});
		
	
});



