// Script: Photo Gallery v2.00
// Company: Interaxis
// Author: dynamicreport.com
// Website: http://dynamicreport.com/ddobj_gallery.html
// License: Commercial (original author info. must remain in all files)

var photo_path = "ddobj/gallery/images/";

var photo_item = new Array (8);
photo_item[0] = "<b><i>Radio City Music Hall</i></b>, located in the Rockefeller Center complex, is the largest indoor theater in the world.";
photo_item[1] = "<b><i>St. Patrick&#146s Old Cathedral</i></b> is in &quot;The Heart of Old New York&quot, Little Italy - on the edge of the Bowery and SoHo, just north of Chinatown.";
photo_item[2] = "";
photo_item[3] = "<b><i>Times Square</i></b> is a major intersection in Manhattan, at the junction of Broadway and Seventh Avenue.";
photo_item[4] = "<b><i>Trogir</i>, Dalmatia</b> has a fascinating 2300 years of continuous urban tradition.";
photo_item[5] = "<b><i>Pula, Istra</i></b> is best known for its many surviving ancient Roman buildings, the most famous of which is its first century amphitheatre.";
photo_item[6] = "<b><i>Dubrovnik, Dalmatia</i></b> - has a remarkable history.  It is an old town that was completed in the 13th century and remains virtually unchanged to the present day.";
photo_item[7] = "<b><i>Dubrovnik, Dalmatia</i></b>";

photo_caption = new Array (2);
photo_caption[0] = "<p class = 'dd_photo_head'>NYC Set</p>";
photo_caption[1] = "<p class = 'dd_photo_head'>Croatia Set</p>";


function photo_html (i)
{ // i = photo item (HTML) output index

	var sLayout = "";

	sLayout = '<table class = "dd_photo_tbl" width = "100%">';
	sLayout += '<tr>';
	sLayout += '<td align = "center"><img src = "' + photo_path + 'photo' + (i + 1) + '.jpg" width = "280" height = "210"></td>';
	if (photo_item[i] != "")
		sLayout += '<td align = "left" class = "dd_photo_cell" valign = "middle">' + photo_item[i] + '</td>';
	sLayout += '</tr>';
	sLayout += '</table>';
	return sLayout;
}
