
/* - bbfaq.js - */
jq(document).ready(function(){
	openstore = {};
	jq("a.more_info_click").click(function(event){
		event.preventDefault();
		if (typeof(openstore[this.id]) == "undefined") {
			jq("div#" + this.id + "_info").show("fast");
			jq("img#" + this.id + "_image").attr("src","/bb_faq_tri_open.png");
			openstore[this.id] = true;
		} else if (!openstore[this.id]) {
			jq("div#" + this.id + "_info").show("fast");
			jq("img#" + this.id + "_image").attr("src","/bb_faq_tri_open.png");
			openstore[this.id] = true;
		} else if (openstore[this.id]) {
			jq("div#" + this.id + "_info").hide("fast");
			jq("img#" + this.id + "_image").attr("src","/bb_faq_tri_closed.png");
			openstore[this.id] = false;
		}
	});
});

