$(document).ready(function() { 
   $('#tabs').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' });
   $("#restrictedAccess").dialog({bgiframe: true,modal: true,autoOpen: false,buttons: {Ok: function() {$(this).dialog('close');}}});
//   $("a.iframe").fancybox({'width':850,'height':650,'padding':0,'hideOnOverlayClick':false,'modal':false,'overlayOpacity':0.9,'overlayColor':'#000','showCloseButton':true,'enableEscapeButton':true});
   $("a.iframe").fancybox({'width':550,'height':500,'padding':0,'hideOnOverlayClick':false,'modal':false,'overlayOpacity':0.9,'overlayColor':'#000','showCloseButton':true,'enableEscapeButton':true});
/*
	$(".colorbox").colorbox({transition:'elastic', speed:1000, iframe:true, innerWidth:425, innerHeight:344, overlayClose:false});
   $(document).bind('cbox_complete', function(){
        countUsers();
		var script = document.createElement("script");
		script.type="text/javascript";
		var src = "http://www.speranta.eu/support/server.php?request=track&output=jcrpt&nse="+Math.random();
		setTimeout("script.src=src;document.getElementById('livezilla_tracking').appendChild(script)",1);
	});
    $(document).bind('cbox_closed', function(){
		lz_stopped = true;
   	});
*/
});
function accesRestrictionat() {
	$("#restrictedAccess").dialog('open');
}
function countUsers() {
	$.ajax({
	   type: "GET",
	   url: "http://statistics.speranta.eu/index.php",
	   dataType: "xml",
	   success: function(xml) {
	   		return $('#users').html($(xml).find('totalUsers').text());
	   }
	});
	timer = setTimeout("countUsers()",10000);
}