

/*
 * initialiseProductList()
 */
function initialiseProductList()
{
	instock = "n"
	if ( productList.length == 0 )
	{
		productList[0] = new Array('BROWNFEATHERTRIM','1m Brown Marabou feather trim','2.25','1m Brown Marabou feather trim');
	}		
}	

	
function createFeatherChooser(featherTypes) 
{
	thisType = "Brown";
	document.write('<font size=2 face="Verdana"> Colour: </font>');
	document.write('<form style="margin-top: 0; margin-left: 0; margin-right: 0; margin-bottom: 0" name="Patternform" >');
	document.write('<select name="Patternselect" onchange="javascript:submitMarabouChooserForm()">');

	
	for (x in featherTypes )
	{
		if ( featherTypes[x] == thisType )
		{
			document.write('<option SELECTED  value='+ featherTypes[x] + '>'+ featherTypes[x] );
		}
		else
		{
			document.write('<option   value='+ featherTypes[x] + '>'+ featherTypes[x] );
		}		
	}
	document.write('</select>');
	document.write('</form>');

}
