diff --git a/examples/demo.html b/examples/demo.html
index 7f47b43..2eff822 100755
--- a/examples/demo.html
+++ b/examples/demo.html
@@ -62,6 +62,11 @@
Element with loads and loads of content
$('.div01').anystretch("img01.jpg");
$('.div02').anystretch("img02.jpg");
$('.div03').anystretch("img03.jpg");
+
+ // alternately, you can iterate through a group of elements:
+ // $('.div01, .div02, .div03').each(function(i, element){
+ // $(element).anystretch("img0" + (i + 1) +".jpg");
+ // });