

$(document).ready(function() {
	$("#twitter_front").getTwitter({
		userName: "buORIENTATION",
		numTweets: 1,
		loaderText: "",
		slideIn: false,
		showHeading: false,
		headingText: "",
		showProfileLink: false,
		updateFn:  function(i, item) { 				
				$("#twitter_front").append("<a href='http://twitter.com/buORIENTATION'>" + item.text + "</a>");
				$("#twitter_front_when").append(relative_created_at(item.created_at)); 

			    }
	});
});





$(document).ready(function() {
	
	$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=35764325%40N03&lang=en-us&format=json&jsoncallback=?", function(data){
	  $.each(data.items, function(i,item){

	    	$("<img/>").attr("src", (item.media.m).replace("_m.jpg", "_s.jpg")).appendTo("#scroller").wrap("<a target='_blank' href='" + item.link + "'></a>");
	  });
	});
	

	$("div.scrollable").scrollable( {size:4, items:"#scroller", loop:true });

	
});


function scrollDivRight(id) {
	var scrollerAPI = $("#"+id).scrollable(); 

	scrollerAPI.next();

}

function scrollDivLeft(id) {
	var scrollerAPI = $("#"+id).scrollable(); 

	scrollerAPI.prev();

}

