jQuery(function(){   
	jQuery(".flickr").each(function(){
		$this = jQuery(this);
		tags_in_div = $this.text();
		$this.text('');
		$this.flickr({
			api_key: "bf34d0c63bfb907ae5c18d74e2cfffe3",     
			type: 'search',
			user_id: '32743927@N02',
			tags: tags_in_div,
			tag_mode: 'all',
			callback: liteboxCallback
		});
	}); 
}); 
function liteboxCallback(el){
	jQuery(el).litebox();
}

