$(document).ready(function(){

	$('a.external').attr('target','blank');
	
	$('a.email').each(function(){
		e = $(this).attr('href').substring(7).replace('/','@');
		this.href = 'mai' + 'lto:' + e;
		if (!$(this).text()) $(this).text(e);
	});

	$('#sidebar ol')
		.hide()
		.siblings('a')
			.toggle(
				function(){
					$(this).siblings('ol').slideDown();
					$(this).removeClass('plus').addClass('minus');
				},
				function(ol){
					$(this).siblings('ol').slideUp();
					$(this).removeClass('minus').addClass('plus');
				}
			)
			.addClass('plus');

	$('blockquote')
		.prepend('<span class="lq">&ldquo;</span>')
		.append('<span class="rq">&rdquo;</span>');

	$('.lecture')
		.each(function() {
			var t = $(this).find('a.more').attr('href');
			if (t!==undefined) {
				$(this).find('h3').wrapInner('<a href="'+t+'"></a>');
			}
		});
		
	$('.lecture a.more')
		.html('')
		.hide();



	if ($.browser.msie && $.browser.version.substr(0,1)=="6") {
		$('.rowblock + .rowblock').css('margin-left', '18px');
		$('#content h1 + h2').css('margin-top', '10px');
		var h = $('#sidebar').height() + $('#imageblock').height() + 40;
		$('#content').css('height', h+'px');
	}

	if ($.browser.safari) {
		$('blockquote span.rq').css('bottom','-15px');
	}

 	$.gaTracker( 'UA-2901438-5', {
	 	localdomain: 'tarragontheatre.com',
	 	extensions: ['pdf','zip','doc','xls']
	});

});

