#!/bin/sh
cd `dirname $0`
#echo `pwd` > /var/tmp/testtouch

PREIMGSRC="<div class=\"leftcolumnbox\"><a href=\""
BASEURL=`cat base`
PREALT="\" alt=\""
CLOSETAG="\">"
CLOSEA="</a>"
CLOSEDIV="</div>"

# find stagioni
STAGIONI=`ls -F -1|grep \/`


for stagione in ${STAGIONI}; do
	LOCATION=`cat ${stagione}location`
	echo ${PREIMGSRC}${BASEURL}${stagione}gallery.shtml${CLOSETAG}${LOCATION}${CLOSEA}${CLOSEDIV}
#	touch ${CAPTIONNAME}.caption.txt
done

