$(function() {
		$('#Home').addClass('selected');
	}
);
$(function() {
		var ref = document.referrer;
		if (ref != null && ref != '') {
			var url = ref.split('/')[2];
			$.post(siteurl+'application/views/Set_referrer.php?t='+Math.random(), {url: url});
		}
	}
);
$(function() {
		$.post(siteurl+'application/auto_gen.php?t='+Math.random());
	}
);
function getList(id, category, type) {
	$(id).bind('ajaxSend', function() {$(id).addClass('loading');});
	$(id).load(
		siteurl+'application/views/Get_glo_gamelist.php?t='+Math.random(),
		{category: category, type: type, amount: 6},
		function() {
			$(id).removeClass('loading');
			$(id).unbind('ajaxSend');
		}
	);	 
}