//Standard NOOK commerce js
$(document).ready(function() {
 
$(".commerce_box").each(function(index) {
	var commerceID = '#Commerce_' + $(this).html();
	$(this).contents().replaceWith($(commerceID).html());
});

});	
