jQuery(function() {
// Product Page Stock Message
if (jQuery(".onecolumn.itempage").length === 1) {
var msg = "Please note: 'in stock' items are available for online ordering, but may not be available for in-store pick up immediately. To confirm in-store stock status, or to inquire about backordered items, please call the shop at (856) 258-4714. Orders for in-store pick up will be notified via email when they are ready.";
var ppMsg = jQuery('').html(msg);
var ppMsgContainer = $('').prepend(ppMsg);
jQuery(".onecolumn.itempage").prepend(ppMsgContainer);
}
});