var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('#br span').hide();
$j('#br h2, #br h3').toggle(function(){
	$j(this).next('span').show(100);
	},
	function(){
	$j(this).next('span').hide(100);
	});
	


})
