jQuery(document).ready(function() {
	$('a.fancy').fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'		: 400, 
		'speedOut'		: 200, 
		'overlayShow'	: true,
		'titlePosition' : 'over',
		'hideOnContentClick' : true,
		'onComplete'	:	function() {
								$("#fancybox-wrap").hover(
									function() {
										$("#fancybox-title").show();
									}, 
									function() {
										$("#fancybox-title").hide();
									}
								)
							}		
	});
	
	$('.links-page #body strong').after(' - <a href="#">expand</a>');
	
	$('.links-page #body strong + a').click(function() {
		$(this).parent().next().toggle('slow');
		$(this).text(($(this).text() == 'expand' ? 'hide' : 'expand'));
		return false;
	}).parent().next().hide();
});
