/**
 * Real Cool Futures 09/2009
 * Story Worldwide
 *
 ** Flickr connection
 */

$(document).ready(function(){var userId='63989229@N00',photos=[],container,photosLimit=4,Photo=function(){this.src='';this.href='#';this.title='';this.width=0;this.height=0;this.index=0;this.render=function(){var li=$('<li class="item'+this.index+'"><a href="'+this.href+'" title="'+this.title+'"><img src="'+this.src+'" alt="'+this.title+'" width="'+this.width+'" height="'+this.height+'"><em>'+this.title+'</em></a></li>').externalLinking();return li;};},renderPhotos=function(){container.removeClass('loading');$.each(photos,function(i,val){container.append(val.render());});};container=$('<ul class="loading">').prependTo('#flickrFeed');$.getJSON('http://api.flickr.com/services/feeds/photos_public.gne?id='+userId+'&lang=en-us&format=json&jsoncallback=?',function(data){for(i=0;i<=photosLimit;i++){var item=data.items[i];var photo=new Photo();photo.index=i;photo.src=item.media.m||'';photo.href=item.link||'';photo.title=item.title||'';photo.width=(i===0)?198:45;photo.height=(i===0)?149:45;photos.push(photo);}
renderPhotos();});});
