replace portion of attribute
// INCREASE PRODUCT IMAGE SIZE
/*
$("img[src*='.jpg']").each(function(){
$(this).attr('src',$(this).attr('src').replace('.jpg','.original.jpg')).error(function() {
$(this).attr('src',$(this).attr('src').replace('.original.jpg','.jpg'));
});
});
*/
//]]>