$(function(){
	
	// Opening external links in new window and adding event tracking
	$("a[href*='http://']:not([href*='morganandco.com']):not([href*='vimeo.com'])").addClass("new-window");
	$('a.new-window').each(function() {
		$(this).attr("title", "Visit "+$(this).attr("href")+" (Opens in a new window)");
	    $(this).attr("target", "_blank");
		$(this).attr("onclick", "pageTracker._trackEvent('Outlinks', 'Click', '"+$(this).attr("href")+"');");
	});
	
	$("#inline").fancybox({
				'padding'		: 20,
				'scrolling'		: 'auto',				
				'autoScale'		: true,
				'transitionIn'  : 'fade',
                'transitionOut' : 'fade'
	});
			
});
