// 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 = "gallery/images/";

var photo_item = new Array (8);
photo_item[0] = "";
photo_item[1] = "";
photo_item[2] = "";
photo_item[3] = "";
photo_item[4] = "";
photo_item[5] = "";
photo_item[6] = "";
photo_item[7] = "";

photo_caption = new Array (2);
photo_caption[0] = "<p class = 'dd_photo_head'>Homes Built by Crestview Builders</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;
}
