/*
  REQUIRE jquery.cookie.js
*/
if((typeof twStayDefined == 'undefined' || !twStayDefined ) && typeof jQuery != 'undefined'){
	$(function(){
		var twStayCountLimit = ($('input[name=twstaycount]').val() || 2);		//default 2
		var twTimeoutMinutesAgo = ($('input[name=twstaytimeout]').val() || 2);	//defalut 2
		function twStayTimer(){
			if($.cookie('cxpr')){
				setTimeout(twStay, $.cookie('cxpr')*1000-(new Date()).getTime()-twTimeoutMinutesAgo*60*1000);
			}else if($.cookie('csno')){
				twStayCountLimit++;
				setTimeout(twStay, 1000);
			}
		}
		function twStay(){
			if(twStayCountLimit-- > 0){
				$.ajaxSetup({ timeout: 0 });
				$.get('/5include/stay.php', twStayTimer);
			}
		}
		twStayTimer();
	});
}
var twStayDefined = (typeof jQuery != 'undefined');

