$(document).ready(function(){
	$.get('../php/gb_news.php', function(resp){
		$('#news').after(resp);
	});
	
	$.get('../php/gb_actions.php', function(resp){
		$('#act').after(resp);
	});
	
	$.get('../php/gb_shop_menu.php', function(resp){
		$('#shop_menu').replaceWith(resp);
	});
});
