
$(document).ready(function(){
			
	// Scroll to top
	$('.backtotop').smoothScroll({});

	// Clear Form Fields-----------------
	var clearMePrevious = '';
	
	// clear input on focus
	$('.clearMe').focus(function()
	{
		if($(this).val()==$(this).attr('title'))
		{
			clearMePrevious = $(this).val();
			$(this).val('');
		}
	});
	// if field is empty afterward, add text again
	$('.clearMe').blur(function()
	{
		if($(this).val()=='')
		{
			$(this).val(clearMePrevious);
		}
	});










});


