$(document).ready(function(){
	if($.query.get('ok'))
	{
		box = $('<div>Your message has been received and we will be in touch shortly.</div>');
		box.addClass('thankyou');
		$('body').prepend(box);
		box.fadeIn(1000);
		setTimeout(function() { box.fadeOut(1000); }, 4000);

	}
});