jQuery(document).ready(function() {

//Target Blank Hack					      
$('a[rel=newtab]').attr('target', '_blank');

//Typsy

$('.tooltip').tipsy({gravity: 'n'});
$('.tooltip').tipsy({fade: true});

//Portfolio
    
	$("#various5").fancybox({
        'autoDimensions'     	: false,
		'width'			: 455,
			'height'		: 420,
			'padding'		: 0,
		'type'				: 'iframe'
	});
			
	
	$('#social li, #bird')
            .removeClass('highlight')
            .find('a')
            .append('<span class="hover" />').each(function () {
                    var $span = $('> span.hover', this).css('opacity', 0);
                    $(this).hover(function () {
                        // on hover
                        $span.stop().fadeTo(500, 1);
                    }, function () {
                        // off hover
                        $span.stop().fadeTo(500, 0);
                    });
                });

});
