
jQuery(document).ready(function() {
		
	// Enlarge Photo
	
	jQuery("#enlarge-team").fancybox({
		'titleShow'		: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	// Tweet
	
    getTwitters('tweets', {
        id: 'DavidSchnurman',
        clearContents: true, // leave the original message in place
        count: 1, 
        enableLinks: true,
        ignoreReplies: false,
        newwindow: true,
        template: '%text% (%time%)'
    });	
	
	// Nav Hover 
	
	jQuery("#main_nav li, #sub_nav li").hover(function () {
		jQuery(this).addClass("hover");
		
	}, function () {
		jQuery(this).removeClass("hover");
	});

    jQuery(".fadeimg").hover(
        function() {
            jQuery(this).animate({"opacity": "0"}, "slow");
        },
        function() {
            jQuery(this).stop().animate({"opacity": "1"}, "slow");
        }
    );

});



