var ajaxRequests = 0;
function get(url, dataReturn) {
	ajaxRequests = ajaxRequests + 1;
	url = url + '&rn='+ Math.floor(Math.random()*99999999);
	jQuery.get(url, function (data) {
		if (data=='login') document.location='index.php';
		else {
			dataReturn(data);
		}
	});
	
}


function fillEle(ele, data) {
	jQuery(ele).html(data);
}

function showEle(ele) {
	jQuery(ele).show();
}

function hideEle(ele) {
	jQuery(ele).hide();
}

function toggleEle(ele) {
	jQuery(ele).toggle();
}

function displayMsg(title,text) {
	setTimeout(function() {
		jQuery.growlUI(title, text);
	},500);
}