$(document).ready(function(){

	$(".x").click(function(){
		$(".pop").fadeOut();
	});
	$("#badge1").click(function(){
		$("#satisfyPop").fadeIn();
		$("#tenPop,#specPop,#fePop").fadeOut();
	});
	$("#badge2").click(function(){
		$("#tenPop").fadeIn();
		$("#satisfyPop,#specPop,#fePop").fadeOut();
	});
	$("#popSpecial").click(function(){
		$("#specPop").fadeIn();
		$("#tenPop,#satisfyPop,#fePop").fadeOut();
	});
	$("#popFE").click(function(){
		$("#fePop").fadeIn();
		$("#tenPop,#specPop,#satisfyPop").fadeOut();
	});
        
        
});
