$(function() {
	
	$('.text').colorbox({
		maxHeight: '90%'
	});
	
	$(".start").click(function() {
		
		var id = $(this).attr('rel');
		
		$("body").flickr({     
			api_key: 'ff2da1e1022d622831970938cdb22252',     
			type: 'photoset',
			photoset_id: id,
			attr: 'rel="gallery"',
			ulattr: 'id="flickr"',
			size: 'b',
			title: false,
			callback: function() {
				
				$("#flickr a").colorbox({
					speed:500,
					slideshow: true,
					open: true,
					maxHeight: '90%',
					maxWidth: '90%',
					onClosed: function() {
						$("#flickr").remove();
					}
				});
				
			}
		  });
		
		return false;
		
	});
	

	
	
})
