$(document).ready(function(){

	var clearMePrevious = '';
	
	// clear input on focus
	$('.clearMeFocus').focus(function()
	{
		if($(this).val()==$(this).attr('title'))
		{
			clearMePrevious = $(this).val();
			$(this).val('');
		}
	});
	// if field is empty afterward, add text again
	$('.clearMeFocus').blur(function()
	{
		if($(this).val()=='')
		{
			$(this).val(clearMePrevious);
		}
	});
});

	// Concertina Forms
jQuery(document).ready(function(){
		$('.answer').hide();
		$('.question').click(function() {
		$(this).toggleClass('opened');
		$(this).next('.answer').toggle('slow');
	});
		$('.closer').click(function() {
		$(this).prev('.answer').hide('slow');
	});
});

