
 //add more case statement to this script to achieve
 //more navigation option and replace the page URL's
 //to your own page URL's

 function goTo()	//function for navigation
 {

   getValue = document.form1.nav.value;

   switch(getValue)
   {

     case "1" :
      location.href = '/recipe/main.asp';
      break;

     case "2" :
      location.href = '/recipe/bread.asp';
      break;

     case "3" :
      location.href = '/recipe/soup.asp';
      break;

     case "4" :
      location.href = '/recipe/rice.asp';
      break;
	  
	   case "5" :
      location.href = '/recipe/dessert.asp';
      break;
	  
	   case "6" :
      location.href = '/recipe/salad.asp';
      break;
	  
	   case "7" :
      location.href = '/recipe/easy.asp';
      break;
	  
	   case "8" :
      location.href = '/recipe/snack.asp';
      break;
	  
	   case "9" :
      location.href = '/recipe/cake.asp';
      break;
	  
	   case "10" :
      location.href = '/recipe/chinese.asp';
      break;

   }

 }

