function verify_age()
{
	// Create dimmer
	$d = document.createElement('div');
	$d.id = 'va_dimmer';
	$($d).css({
		position: 'fixed',
		width: '100%',
		height: '100%',
		background: '#000',
		opacity: .7,
		zIndex: 1500
	});
	$('body').prepend($d);

	// Body for modal
	$modal_html  = '<a href="#" id="va_yes"></a>';
	$modal_html += '<a href="#" id="va_no"></a>';

	// Create the modal
	$m = document.createElement('div');
	$m.id = 'va_modal';
	$('body').prepend($m);
	$($m).html($modal_html);
	$($m).center();

	// Attach link events
	$('#va_yes').click(function(e)
	{
		e.preventDefault();

		$.ajax({
			url: _root + 'ajax/age_verified',
			success: function(data)
			{
				// Do nothing
			}
		});

		$('#va_dimmer').fadeOut(150, function()
		{
			$('#va_modal').fadeOut(150);
		});
	});
	$('#va_no').click(function(e)
	{
		e.preventDefault();
		window.location.href = 'http://www.google.com';
	});
}

$(document).ready(function()
{
	verify_age();
});

