var acu = { 
/* debugger; */

init:function() {
if (!document.getElementById || !document.createTextNode){return;}
$(document.body).addClass("jsWorks");
	if ($('body').attr('id') == 'bFAQ') {
		$('#faqQ a').click(function(e) {
			var p = $(this).parent(); 
			acu.showFAQ($(this).attr('href'),p);
			acu.cancelClick(e);
		});
	};
},

showFAQ: function(_this,p) {
scroll(0,0);
if ($('#displayed').length == 1) {
		$('#displayed').remove();
		$('#hideQ').attr('id','');
	}
var id = _this.substring(1);
var t = $(document.getElementById(id));
divT = document.createElement( 'div' );
$(divT).attr('id','displayed').html(t.html()).insertAfter(p).show('slow');
p.attr('id','hideQ');
var h2 = $(divT).find('h2');
		h2.click(function(e) {
			$('#displayed').remove();
			$('#hideQ').attr('id','');
		});
		h2.hover(function() {
		$(this).addClass("over");
	}, function() {
		$(this).removeClass("over");
	}) ;
}, 
cancelClick:function(e){
		if (window.event){
			window.event.cancelBubble = true;
			window.event.returnValue = false;
		}
		if (e && e.stopPropagation && e.preventDefault){
			e.stopPropagation();
			e.preventDefault();
		}
	}
}
$(document).ready(acu.init);