$(document).ready(function (){
	$('#directory .toggle_user').click(function(){
		var id = $(this).attr('href');
		$(id).toggle();
		$(this).toggleClass('active');
		return false;
	});
	$('.testimonial .show').click(function (){
		$(this).parents('.testimonial').find('p').toggle();
		$(this).find('span').toggle();
		return false;
	});
/*
	$('#right_col.gallery a').prettyPhoto({
		theme: 'dark_rounded',
		gallery_markup: ''
	});
*/
});

