jQuery(document).ready(function() {

//	var gets = location.search;
//	if(gets == '?test') {
		jQuery.get('/user_modules/blabla.php', function(ret) {
			jQuery('#potd_b span').html(ret);
		});
//	}

	jQuery.get('/user_modules/th_check.php?'+Math.random(), function(ret) {
		if (ret=='achtung') {
			jQuery('body').append('<div id="th_rem"><p>Внимание! Вы просматриваете сайт в режиме предпросмотра темы оформления. <a href="/user_modules/th_check.php?action=clear">Перейти в штатный режим</a>.</p></div>');
			jQuery('#th_rem').css({
				width: '100%',
				zIndex: '99',
				opacity: '0.1',
				height: '34px',
				background: '#FFD000',
				position: 'absolute',
				top: 0,
				left: 0,
				position: 'fixed',
				borderBottom: '2px solid #808080',
				marginTop: '-35px'
			});
			jQuery('#th_rem p').css({
				margin: '10px',
				font: 'bold 12px Verdana'
			});
			jQuery('#th_rem').animate({
				marginTop: '0px',
				opacity: '0.9'
			},500);
		}
	});

});

function sewindowHeight() {
	var de = document.documentElement;
	return self.innerHeight || ( de && de.clientHeight ) || document.body.clientHeight;
}

function sewindowWidth() {
	var de = document.documentElement;
	return self.innerWidth || ( de && de.clientWidth ) || document.body.clientWidth;
}
