jQuery(function($) {	
	$('#faq dt a').click(function() {
		$('#faq dt, #faq dd').removeClass('selected');
		$(this).parent().addClass('selected'); 						 
		$(this).parent().next().addClass('selected'); 
		return false;
	});
});

function init() { if(window.alphaPNG) alphaPNG() ; }
/* SHORT GENERIC ONLOAD BY BROTHERCAKE
----------------------------------------------------------------*/
if(typeof window.addEventListener != 'undefined') {
	window.addEventListener('load', init, false);
} else if(typeof document.addEventListener != 'undefined') {
	document.addEventListener('load', init, false);
} else if(typeof window.attachEvent != 'undefined') {
	window.attachEvent('onload', init);
}

