$(function() {

	// http://j.mp/jquery-target-blank
	$('a[href^="http://"], a[rel="external"], a[href$=".pdf"]').attr({
		target: "_blank",
		title: "Opens in a new window"
	});

	//	Start up our Featured Project Carosuel
	$('#featured ul').roundabout({
		easing: 'easeOutInCirc',
		duration: 600
	});

	// Twitter Feed
	$(document).ready(function() {
		$("#tweets").getTwitter({
			userName: "ryanswedal",
			numTweets: 1,
			loaderText: "Loading tweets...",
			slideIn: true,
			showHeading: false,
			showProfileLink: false
		});
	});




});




















