$(document).ready(function()
	{
	
		// Initialize tabs
		var $tabs = $('#info').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
		// Link to show concert info
		$('#selConcert').click(function()
		{
    		$tabs.tabs('select', 2);
    	});
		$('#vTab').click(function()
		{
    		$tabs.tabs('select', 1);
    	});
    			
		// Add Analytics tracking to PDFs
		$('a[href$=".pdf"]').click(function(){
				_gaq.push(['_trackEvent', 'PDF', $(this).attr("href")]);
		});
		
		// Make external links open in new windows
		var external_re = new RegExp('^https?://(?!'+document.location.hostname+')');
	
		$('a').each(function(){
			if (this.href.match(external_re)) {
				this.target = '_blank';
			}
		});
		
		swfobject.embedSWF("photos/gallery.swf", "photos", "598", "445", "9.0.0");
	
	}
);
