	function contentpick() {
		var werehere = location.href;
	 	var challenge = document.getElementById("challenge").style;
		var jumpstart = document.getElementById("jumpstart").style;
		var workouts = document.getElementById("workouts").style;
		var bodybyglamour = document.getElementById("bodybyglamour").style;
		
		//#GROUP# http://www.selfjumpstartdiet.com
		//#GROUP# http://www.glamour.com/bbg/welcome
		var dieting = "http://www.nutritiondata.com/topics/dieting-weight-loss";
		var glycemic = "http://www.nutritiondata.com/topics/glycemic-index";
		var fullness = "http://www.nutritiondata.com/topics/fullness-factor";
		//#GROUP# http://www.self.com/challenge
		//#GROUP# http://www.glamour.com/bbg/welcome
		var better = "http://www.nutritiondata.com/topics/better-choices-diet";
		var processing = "http://www.nutritiondata.com/topics/processing";
		//#GROUP# http://www.self.com/fitness/workouts
		//#GROUP# http://www.glamour.com/bbg/welcome
		var nutrition = "http://www.nutritiondata.com/topics/nutrition-news";
		var additives = "http://www.nutritiondata.com/topics/food-additives";
		var fatty = "http://www.nutritiondata.com/topics/fatty-acids";
		
		if (werehere == dieting) {
			challenge.display = "none";
			jumpstart.display = "block";
			workouts.display = "none";
			bodybyglamour.display = "block";
		} else if (werehere == glycemic) {
			challenge.display = "none";
			jumpstart.display = "block";
			workouts.display = "none";
			bodybyglamour.display = "none";
		} else if (werehere == fullness) {
			challenge.display = "none";
			jumpstart.display = "block";
			workouts.display = "none";
			bodybyglamour.display = "none";
		} else if (werehere == better) {
			challenge.display = "block";
			jumpstart.display = "none";
			workouts.display = "none";
			bodybyglamour.display = "block";
		} else if (werehere == processing) {
			challenge.display = "block";
			jumpstart.display = "none";
			workouts.display = "none";
			bodybyglamour.display = "none";
		} else if (werehere == nutrition) {
			challenge.display = "none";
			jumpstart.display = "none";
			workouts.display = "block";
			bodybyglamour.display = "block";
		} else if (werehere == additives) {
			challenge.display = "none";
			jumpstart.display = "none";
			workouts.display = "block";
			bodybyglamour.display = "none";
		} else if (werehere == fatty) {
			challenge.display = "none";
			jumpstart.display = "none";
			workouts.display = "block";
			bodybyglamour.display = "none";
		} else {
			challenge.display = "block";
			jumpstart.display = "block";
			workouts.display = "block";
			bodybyglamour.display = "block";
		}
	}