$(document).ready(function(){

checkStatus();
setInterval(function() {
	checkStatus();
}, 5000);

$(".date").append("<span class='corn1'></span><span class='corn2'></span>");
$(".corn1, .corn2").pngfix();
/*$(".liodd .item-tn a").append("<span></span>");*/

$.fn.colorbox.settings.transition = "fade";
$.fn.colorbox.settings.bgOpacity = "0.8";
$.fn.colorbox.settings.transitionSpeed = "0";
$.fn.colorbox.settings.modalClose= "ЗАКРЫТЬ";
$.fn.colorbox.settings.contentCurrent = "image {current} of {total}";
$(".gls").colorbox();
$('#borderTopLeft, #borderTopCenter, #borderTopRight, #borderBottomLeft, #borderBottomCenter, #borderBottomRight, #borderMiddleLeft, #borderMiddleRight').css('opacity', 0.5);

$('.chat a').popupWindow({ 
	height:450, 
	width:600, 
	centerScreen:1
});





});

function checkStatus(){
	$.getJSON("/plugins/status.php",function(data){
		if(data) {
//alert(data);
			if(data.status != 'error') {
				if(data == 'online') {
					$('#online').fadeIn("slow");
					$('#offline').fadeOut("slow");
				}else{
					$('#online').fadeOut("slow");
					$('#offline').fadeIn("slow");
				}
			}else{
				$('#error').removeClass('hide').html(data.message);
			}
		}
	});
}
