// JavaScript Document
$( function() {
	$( '#external_links img, #right_icon, #icon_nav a' )
	.fadeTo( 'slow', .5 )
	.hover(
		function() {
			$( this ).stop().fadeTo( 'slow', 1 );
		},
		function() {
			$( this ).stop().fadeTo( 'slow', .5 );
		}
	);
	
	$( 'a.tooltip' ).tooltip({
		background: '#2b2b2b',
		color: '#1f93ff'
	});
	
	$( 'a.fancybox' ).fancybox({
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'speedIn' : 600,
		'speedOut' : 300
	});
});