$(document).ready(function(){
	$(".inactive").attr('id', function(i){
		return "faq"+i;						   
	});
	
	$(".close").attr('id',function(b){
		return "close"+b;						   
	});
	
	$("ul#quests li>a").attr('id', function(e){
		return "q"+e;							 
	 }).each(function(d){
		 $(this).click(function(){
			$(".active").hide();
			$("#faq"+d).fadeIn().addClass("active");
			$("#square").height($("#center-body").height()+30);
		 });
		 $("#close"+d).click(function(){
			$(".active").fadeOut();	
			$("#square").height($("#center-body").height()+50);
			
		 });
	 });
});