$().ready(function() {
	if ($.cookie('splash') != 'false' && parseInt(new Date().getTime().toString().substring(0, 10)) < 1419246000) {
		$('#splash').css({
			'top': ($(window).height()+$('#splash').outerHeight())+'px',
			'left': ($(window).width() - $('#splash').outerWidth()-30)+'px',
			'opacity': 0,
			'position': 'absolute'
		});
		$('#splash').show().animate({
			opacity: 1,
			top: ($(window).height()-$('#splash').outerHeight()-40)+'px'
		},1000,false).animate({
			top: ($(window).height()-$('#splash').outerHeight()-30)+'px'
		},200,false);
		$.cookie('splash','true');
		setTimeout('splashFadeOut()',60000);
	}
});
function splashFadeOut() {
	$('#splash').show().animate({
		'opacity': 0,
		'top': ($(window).height()+$('#splash').outerHeight())+'px'
	},1000,false);
}
