$j=jQuery.noConflict();

$j(document).ready(function() {
	$j('#comments .tabs').tabs();
	$j('.tabs').tabs({ fx: { height: 'toggle', opacity: 'toggle', speed: 'fast' } });
	$j("ul.sf-menu").superfish(); 
	$j('#submenu ul li a.nob').click(function() {
		$j(this).next().toggle('slow');
		return false;
	}).next().hide();

});
