// JavaScript Document slideToggle for FAQ


$(document).ready(function() {
	$("#qa > h4").hover(function(){
		$(this).css("cursor","pointer");
		$(this).css("font-weight","bold");
		$(this).css("background","url(/bd/faq/img/faq011_o.gif) 0 0 no-repeat"); 
	},function(){
		$(this).css("cursor","default");
		$(this).css("font-weight","normal"); 
		$(this).css("background","url(/bd/faq/img/faq011.gif) 0 0 no-repeat"); 
		});
		$("ul.ans").css("display","none");
		$("#qa > h4").click(function(){
			$(this).next().slideToggle("fast");
		});
});


