function dShipment() {

// Responds to EVERY image in the mainContent section of the page...
$('#mainContent img').each(function(idx, item) {

    // Collects the src attribute from EVERY image...
    var tImgs = item.src;

    // Only responds to images whose src attributes have "-ds." in them...
    if (tImgs.indexOf("-ds.") > 0) {

        // Adds special text on every page...
        $(this).parent().after('<div class="dShip"><div class="dsOpen">This item is </div><div class="dsMid"><a href="http://www.conrads.com/shipping.htm#16" target="_blank">Drop Shipped</a></div><div class="dsClose"> from the manufacturer.</div></div>');

    }
});


}


