$(document).ready(function()
	{
	
		$('#info').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
		
		var $tabs = $('#info').tabs(); // first tab selected
		$('#selConcert').click(function() { // bind click event to link
    		$tabs.tabs('select', 2); // switch to third tab
		});
	
	}
);