$(document).ready(function(){
	//$.cookie('warned', 'true', 
	//	{
	//		expires: 60,  // in X days, if null or omitted then on browser close
	//		path: '/',  // cookie valid only for dir and sub-dirs
	//		domain: 'sexyporntours.com', 
	//		}
	//	);
	//$.cookie('warned', null);
	if ($.cookie('warned') == 'true') {
		$('#warning, #warning_bg').hide();
	} else {
		var windowWidth = document.documentElement.clientWidth;
		var windowHeight = document.documentElement.clientHeight;
		$("#warning").width(Math.min(960,windowWidth-(windowWidth/8)));
		var popupHeight = $("#warning").height();
		var popupWidth = $("#warning").width();
		$('#warning').css({
			'position':'absolute',
			'z-index':'2',
			"top": Math.max(windowHeight/2-popupHeight/2, 0),
			"left": Math.max(windowWidth/2-popupWidth/2, 0),
			});
		$("#warning_bg").css({"opacity": "0.7"});
		$('#warning').show();
		$("#warning_bg").show();
	}
	$('#warning_enter, #warning_bg').click(function(){
		$('#warning, #warning_bg').hide();
		$.cookie('warned', 'true', {expires: 365});
	});
});

