$(document).ready(function() {
	runBuild = function(){
		
		$.getJSON("http://api.flickr.com/services/feeds/groups_pool.gne?id=895578@N20&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);
				$('#image-title').html(item.title);
				$("#photoset").html("<a href='"+data.link+"' target=\"_blank\">Visit the Big Island Pool!</a>");
			
			});
      
      /*
	    $('#images').cycle({
      	fx:     'fade',
        speed:    'normal',
        timeout:  '4000',
        pause: '1',
        next:   '#next',
        prev:   '#prev',
        before: onBefore,

			});
		*/	
			
		function onBefore() {
        //$('#image-title').html(item.title);
        }
	
		
			

		});

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