jQuery(document).ready(function($) {
	$('a.fb').toggle(
	function(){$(this).parent().find('.popup').show();},
	function(){$(this).parent().find('.popup').hide();});
	$('a.t').toggle(
	function(){$(this).parent().find('.popup').show();},
	function(){$(this).parent().find('.popup').hide();});
});
