var npTitle = new Array();
var npLink = new Array();

npTitle[0] = "Car breakdown";
npLink[0] = "car_breakdown.asp";
npTitle[1] = "The dentist";
npLink[1] = "dentist.asp";
npTitle[2] = "The hairdressers";
npLink[2] = "hairdressers.asp";
npTitle[3] = "The hospital";
npLink[3] = "hospital.asp";
npTitle[4] = "Immunisations";
npLink[4] = "immunisations.asp";
npTitle[5] = "A power cut";
npLink[5] = "powercut.asp";
npTitle[6] = "Shopping trips";
npLink[6] = "shopping_trips.asp";
npTitle[7] = "Swimming";
npLink[7] = "swimming.asp";
npTitle[8] = "Tantrums";
npLink[8] = "tantrums.asp";
npTitle[9] = "Babysitting";
npLink[9] = "babysitting.asp";

function npDropdown(){
	document.write('<option value="">select</option>');
	for (i=0; i<npTitle.length ; i++){
        document.write('<option value="' + npLink[i] + '">' + npTitle[i] + '</option>');
    }
}

function npList(){
	for (i=0; i<npTitle.length ; i++){
		document.write('<li>&nbsp;');
        document.write('<a class="feature" href="' + npLink[i] + '">' + npTitle[i] + '</a></li>');
    }
}