$(document).ready(function(){
	// Open outbound links in new windows
	$("a[href*='http://']:not([href*='"+window.location.hostname+"'])").click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	// Happy scrolling people holding hands
	$('a[href*=#]').click(function(){
		var href = $(this).attr('href');
		var hash = href.substr(href.indexOf('#'));
		$.scrollTo(hash, 250);
		return false;
	});
});
