google.setOnLoadCallback(function(){

	//$('#shop-bottom').load(function(){
        $.ajax({
            url: "/load.php",
            type: "GET",
			cache: false,
			contentType: 'text/html',
			dataType: 'html',
			success: function(msg) {
				$('#shop-bottom').html(msg);
			}	
		});
	//});
});
