$(document).ready(function(){
	
	// Remove the loading animation
	$('div.photoGallery').removeClass('loading');
	
	if(flickr.length > 0){
		for($x=0;$x<flickr.length;$x++){
			$('div.photoGallery ul').append('<li><a href="' + flickr[$x].image + '" class="thickbox" rel="flickr-photos" title="' + flickr[$x].title + '"><img src="' + flickr[$x].thumb + '" width="75" border="0" alt="' + flickr[$x].title + '" /></a></li>');
			
		}			
			tb_init('div.photoGallery a.thickbox');
	}else{
		$('div.photoGallery').html('<strong>Flickr photos are currently unavailable.</strong>');
	}
		
});