$(document).ready(
	function () {
		$('#url').focus();
		
		var msg = $('.cheekyMsg').html();
		if (msg != null)
		{
			$(document).oneTime(5000, function(i) {
				$('.cheekyMsg').fadeTo('slow', '0.01');
			});
		}
	}
);
