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