if ($('faqs'))
{
	$('faqs').select('dt').each(function(item)
	{
		item.onclick = function(){

			var next = this.next();
			if (next.style.display == 'block'){
				next.style.borderBottom = '0px';
				this.style.borderBottom = '1px solid #CCCCCC';
				next.hide();
			} else{
				next.style.display = 'block';
				this.style.borderBottom = '0px';
				next.style.borderBottom = '1px solid #CCCCCC';
			}
		}

	});
}
