// JavaScript Document
 $(document).ready(function(){
                $('#test').load('http://bulkpricedfoodshoppe.com/random_number.php', '', function(response, status, xhr) {
                    if (status == 'error') {
                        var msg = "Sorry but there was an error: ";
                        $(".content").html(msg + xhr.status + " " + xhr.statusText);
                    }
                });
				

            });
