jQuery(function( $ ){
	function setSplash() {
		var COOKIE_NAME = 'splash-page-cookie4';
		$go = $.cookie(COOKIE_NAME);
		if ($go == null) {
		//if (true) {
			$.cookie(COOKIE_NAME, 'splash', { path: '/', expires: 0 });
			$('body').css('overflow','hidden');
/* 			$('#splash').height(document.body.scrollHeight); */
			$('#splash').fadeIn();
		}
	}
	
	$('#close_btn').click(function(){
		$('body').css('overflow','auto');
		$('#splash').fadeOut();
	});
	
	setSplash();
	
	$('.required').focus(function(){
		$('.required').css({
			"background-position":"center top"
		});
		$(this).css({
			"background-position":"center bottom"
		});
	});
});