function featureTable(header, imgsrc, description, price, linkloc, imgalt){
	document.write('<table width="400" class="feature" bgcolor="#66cccc" border="0">');
	document.write('<thead>');
	document.write('<th colspan="3" background="images/darker_corner.png" style="background-repeat:no-repeat">');
	document.write('<div style="font-family:Trajan Pro; font-size:28px">'+ header +'</div>');
	document.write('</th>');
	document.write('</thead>');
	document.write('<tr>');
	document.write('<td rowspan="2" width="133">');
	document.write('<a href="'+ linkloc +'"><img src="'+ imgsrc +'" border="0" alt="'+ imgalt +'"/></a>');
	document.write('</td>');
	document.write('<td style="padding:4px" colspan="2"><p align="justify">'+ description +'</p></td>');
	document.write('</tr>');
	document.write('<tr>');
	document.write('<td align="center"><b>from &pound;'+ price +'</b></td>');
	document.write('<td><a href="'+ linkloc +'"><img src="images/info.jpg" border="0" align="right" /></a>');
	document.write('</td>');
	document.write('</tr>');
	document.write('</table>');
};

function packageTable(header, imgsrc, description, activities, price, linkloc, imgalt){
	document.write('<table align="center" class="feature" width="600" bgcolor="#66cccc">');
	document.write('<thead><th colspan="3" background="images/darker_corner.png" style="background-repeat:no-repeat"><div style="font-family:Trajan Pro; font-size:34px">'+ header +'</div></th></thead>');
	document.write('<tr>');
	document.write('<td valign="middle" align="center"><a href="'+ linkloc +'"><img src="'+ imgsrc +'" border="0" alt="'+ imgalt +'" /></a></td>');
	document.write('<td valign="top" width="200"><div align="justify"><font face="arial" size="3pt">'+ description +'</font></div></td>');
	document.write('<td><ul>');

	for(var i = 0; i < activities.length; i++){
		document.write('<li><font face="Trajan Pro">'+ activities[i] +'</font></li>');
	};

	document.write('</ul></td>');
	document.write('</tr>');
	document.write('<tr>');
	document.write('<td align="center">&nbsp;</td>');
	document.write('<td align="center"><font face="Trajan Pro" size="5pt"><b>from &pound;'+ price +'</b></font></td>');
	document.write('<td align="right"><a href="'+ linkloc +'"><img src="images/fulldetails.jpg" border="0" /></a></td>');
	document.write('</tr>');
	document.write('</table>');
};

function activityTable(header, imgsrc, description, linkloc, imgalt){
	document.write('<table width="600" class="feature" bgcolor="#66cccc" border="0" align="center">');
	document.write('<thead>');
	document.write('<th colspan="2" background="images/darker_corner.png" style="background-repeat:no-repeat">');
	document.write('<div style="font-family:Trajan Pro; font-size:28px">'+ header +'</div>');
	document.write('</th>');
	document.write('</thead>');
	document.write('<tr>');
	document.write('<td rowspan="2" width="133">');
	document.write('<a href="'+ linkloc +'"><img src="'+ imgsrc +'" border="0"  alt="'+ imgalt +'"/></a>');
	document.write('</td>');
	document.write('<td valign="top"><font face="Trajan Pro">'+ description +'</font></td>');
	document.write('</tr>');
	document.write('<tr>');
	document.write('<td valign="bottom"><a href="'+ linkloc +'"><img src="images/fulldetails.jpg" border="0" align="right" /></a>');
	document.write('</td>');
	document.write('</tr>');
	document.write('</table>');
};