$(document).ready(function () {
	if (readCookie('welcome-banner-gpstore-hide') == 1) return;

	var html = '<div id="welcomeBanner" class="gpstore">' +
		'<div class="welcomeBannerContent">' +
			'<div class="welcomeLogo"></div>' +
			'<div class="welcomeText">' +
				'<h1>Gameplanet Store is now Mighty Ape!</h1>' +
				'<p>We\'ve changed our name, and we\'re now selling books and music. <a href="/help/gpstore/">Learn more</a></p>' +
			'</div>' +
			'<a href="#" id="welcomeClose">Close</a>' +
		'</div>' +
	'</div>';

	$('#rootContainer').append(html).animate({ top: '68px' }, 1000);

	$('#welcomeClose').bind('click', function (e) {
		$('#rootContainer').animate({ top: 0 }, 1000, null, function () {
			$('#welcomeBanner').remove();
		});
		createCookie('welcome-banner-gpstore-hide', 1, 7);
		e.preventDefault();
	});
});
