$(document).ready(function() {
	runBuild = function(){
		
		$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=38094251@N03&lang=en-us&format=json&jsoncallback=?",
		function(data){		
			
    	$.each(data.items, function(i,item){                                          
				$("<img />").attr({
				    src: item.media.m,
				    title: item.title,
				    alt: item.title

					
				}).appendTo("#images").wrap("<a href='" + item.link + "' target=\"_blank\"></a>");

				$("#title").html(data.title);
				$("#description").html(data.description);
				$("#photoset").html("<a href='"+data.link+"' target=\"_blank\">See more work!</a>");
				
			});
      
			$('#images').cycle({
      	fx:     'fade',
        speed:    'fast',
        timeout:  0,
        next:   '.next',
        prev:   '.prev'
			});

		});

		return false;
	}
	
	$(function(){
		runBuild();
		$('#refreshLink').click(runBuild);
	});
	
});