$(document).ready(function(){
	$("div.selected").toggleClass("selected");
	$("div.question div.answer").hide();
	$("div.question p.text a").click(function(){
		var $this = $(this);
		$("div.selected")
			.toggleClass("selected")
			.children("div.answer")
				.toggle("slow");
		$this
			.parents("div.question")
				.toggleClass("selected")
				.children("div.answer")
					.toggle("slow");
		return false;
	});
	
	$("input:text, textarea").focus(function(){
		$this = $(this);
		if(!$this.attr("rel")){
			$this.attr("rel","edited");
			$this.val("");
		}	
	});
	
	$("a.chat-link").click(function(){
		window.open(this.href, "_blank", "width=532,height=515,scrollbars=no,status=no,resizable=no");
		return false;
	});
	
	$("a:contains('Start chat')").click(function(){
		window.open(this.href, "_blank", "width=532,height=515,scrollbars=no,status=no,resizable=no");
		return false;
	});
	
});