$(document).ready(function() { 				
								
							   
	$('.tour .gigpress-info').hide('slow');
	
	$('.tour a.toggleinfo').click(function(){
		$(this).parent().parent().next('tr').fadeIn('slow');
		$(this).fadeOut('slow');
		return false;
	});
		
});