
// Function to find query string values
$.urlParam = function(name){
	var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
	if (!results) { return 0; }
	return results[1] || 0;
}
// Find parent and sub page values
var parentPage = $.urlParam('cat');
var subPage = $.urlParam('class');
switch(parentPage){
	//Dogs
	case "2":
	  switch(subPage){
		case "1":
		  document.title = "Sergeant's FAQs | Dogs | Sergeant's Gold Flea and Tick - Product Answers and Details";
		  break;
		case "2":
		  document.title = "Sergeant's FAQs | Dogs | Health & Beauty Product Answers - Vetscription, WormX etc";
		  break;
		case "5":
		  document.title = "Sergeant's FAQs | Dogs | Learn About Sergeant's Dog Toys - Your Questions Answered";
		  break;
		case "7":
		 document.title = "Sergeant's FAQs | Dogs | Sergeant's Dog Treats - Ingredients and Recommendations";
		  break;
		default:
		  document.title = "Sergeant's FAQs | Dogs | Sergeant's Pet Care Products for Dogs - Your Questions Answered";
	  }
	  break;
	
	//Cats
	case "1":
	  switch(subPage){
		case "1":
		  document.title = "Sergeant's FAQs | Cats | Sergeant's Flea & Tick Products for Cats - Product Details";
		  break;
		case "2":
		  document.title = "Sergeant's FAQs | Cats | Health & Beauty Cat Products - Ingredients and Instructions";
		  break;
		case "5":
		  document.title = "Sergeant's FAQs | Cats | Your Sergeants Cat Toy Questions Answered";
		  break;
		default:
		  document.title = "Sergeant's FAQs | Cats | Dr Van Horn Answers Your Cat Product Questions";
	  }
	  break;
	//Birds
	case "4":
	  document.title = "Sergeant's FAQs | Birds | Dr Van Horn Answers Bird Product Questions";
	  break;
	//Small Animals
	case "6":
	 document.title = "Sergeant's FAQs | Small Animals | Sergeant's Small Animal Product Details and Descriptions";
	  break;
	//Aquatic
	case "5":
	  document.title = "Sergeant's FAQs | Aquatic | Sergeant's Pet Fish Supplies - Your Questions Answered";
	  break;
	//Home
	case "7":
	  document.title = "Sergeant's FAQs | Household | Sergeant's Household Pet Products - Your Questions Answered";
	  break;
	default:
	  document.title = "Sergeant's FAQs - Your Product Questions Answered by Dr. Van Horn";
}

