// 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('one');
var subPage = $.urlParam('two');
switch(parentPage){
	//Dogs
	case "1":
	  switch(subPage){
		case "1":
		  document.title = "Product Catalog | Dogs | Flea & Tick - Sergeants Flea and Tick Products Make Getting Rid of Fleas Easy";
		  break;
		case "18":
		  document.title = "Product Catalog | Dogs | Health Care - Remedy Your Dog's health problems with Sergeants' trusted products";
		  break;
		case "35":
		  document.title = "Product Catalog | Dogs | Grooming - Dog Grooming Supplies For All Dog Breeds";
		  break;
		case "52":
		 document.title = "Product Catalog | Dogs | Rawhide - Sergeant's Natural Pet Supplies - Rawhides for dogs";
		  break;
		case "69":
		  document.title = "Product Catalog | Dogs | Toys - Sergeants Specialty Pet Products - Perfect Toys for Any Dog";
		  break;
		case "86":
		  document.title = "Product Catalog | Dogs | Accessories - Sergeants Dog Accessories - Dog Collars Dishes and Tie Outs";
		  break;
		case "103":
		  document.title = "Product Catalog | Dogs | Treats - Sergeants Dog Treats - Uncle Sam's SteakHouse and DentaFresh";
		  break;
		default:
		  document.title = "Product Catalog | Dogs | Sergeant's Pet Supplies - Your #1 Pet Care Choice";
	  }
	  break;
	
	//Cats
	case "18":
	  switch(subPage){
		case "1":
		  document.title = "Product Catalog | Cats | Flea & Tick - Sergeant's Makes Getting Rid of Fleas and Removing Ticks Easy";
		  break;
		case "18":
		  document.title = "Product Catalog | Cats | Health Care - Cat Health Care Products for Your Cat's Health Problems";
		  break;
		case "35":
		  document.title = "Product Catalog | Cats | Grooming - Cat Grooming Supplies and Specialty Pet Products from Sergeants";
		  break;
		case "69":
		  document.title = "Product Catalog | Cats | Toys - Sergeant's Cat Toys - Give Your Cat Hours of Fun and Exercise";
		  break;
		case "86":
		  document.title = "Product Catalog | Cats | Accessories - Sergeant's Flirty Cat Collars are the Perfect Cat Accessory";
		  break;
		default:
		  document.title = "Product Catalog | Cats | Sergeant's Pet Supplies - Your #1 Pet Care Choice";
	  }
	  break;
	//Birds
	case "69":
	  document.title = "Product Catalog | Birds | Sergeant's Pet Bird Supplies - Bird Food, Treats and Toys";
	  break;
	//Small Animals
	case "52":
	 document.title = "Product Catalog | Small Animals | Small Animal Pet Foods and Treats from Sergeants";
	  break;
	//Aquatic
	case "35":
	  document.title = "Product Catalog | Aquatic | Sergeant's Fish Food and Supplies, Fish Tank Supplies";
	  break;
	default:
	  document.title = "Products | Sergeant's Pet Supplies- Your #1 Pet Care Choice";
}
