/*
 * General DOM READY events
 */
jQuery(function($){
	$('a[rel~=lightbox]').lightbox();	
	$('#band-members a')
		.each(function(){
			$(this).attr('title',$(this).text());
		})
		.tooltip({ track: true, delay: 0, showURL: false});
	
	$('.news-single-img a').attr('rel','lightbox[gallery]').each(function(){
		$(this)[0].onclick = '';
		//$(this).lightbox();
	})
});