function dostuff(element) {
element.beforeAfter({
animateIntro: true,
introDelay: 500
});
}
jQuery(function() {
dostuff(jQuery('#retouching-image-1,#retouching-image-2'));
});
Создайте функцию или просто сделайте это вместо:
jQuery('#retouching-image-1,#retouching-image-2').beforeAfter({
animateIntro: true,
introDelay: 500
});
Хотя лично я бы создал класс и сделал бы это следующим образом:
jQuery('.retouching-images').beforeAfter({
animateIntro: true,
introDelay: 500
});