function loadAjaxQuotes(ids) {
    jQuery(document).ready(function() {
        var domain = location.host.split('/', 1)[0];

        jQuery.get(location.protocol+'//'+domain+'/1695?qids='+ids, function(data) {
            var quotes = jQuery('.footer-quotes');
            quotes.html(data);
            quotes.fadeIn(2000);
        });
    });
}

