var MIN_TIME_BETWEEN_AJAX_REQUESTS = 1500;


if(window.location.host=='sf.tweetag.com')
	var BASE_URL='http://sf.tweetag.com/';
else if(window.location.host=='europe.tweetag.com')
	var BASE_URL='http://europe.tweetag.com/';
else
	var BASE_URL='http://localhost.tweetag.com/';

var SITE_URL = BASE_URL + 'index.php/';

function notice(anchor,msg)
{
	if(anchor.substring(0,1)!='#')
		anchor = '#' + anchor;
	$(anchor).html(msg);
	$(anchor).fadeIn('slow');
	func = "$('"+anchor+"').fadeOut('slow')";
	
	setTimeout(func,3000);
}

function debug(msg)
{
	if(window.console)
		console.info(msg);
}

