lightwindow.addContentHandler('author','galleryInfo',function(content) {
	var baseUrl=artists['url'];	
	if(!content)
		return '';	
	return 'meer <a href="'+baseUrl+'/'+escape(content.replace(/ /g,"_"))+'">'+content+'</a>';	

});
lightwindow.addContentHandler('imageType','galleryInfo',function(content) {	
	if(!content)
		return '';
	var image_type=content.substr(content.indexOf('- ')+2).toLowerCase();					
	if(image_types[image_type]) {
		var baseUrl=image_types[image_type]['url'];
		return 'meer <a href="'+baseUrl+'">'+image_types[image_type]['label']+'</a>';
		
	}
	return '';	

});
lightwindow.setTransitionTime(.3);

