$(document).ready(function() {
	$('.overview .oimg')
		.css('cursor','pointer')
		.click(function(){
			var t = $(this).siblings('a.more').attr('href');
			if (t!==undefined) window.location = t;
		})
		.hover(
			function(){
				$(this).siblings('a.more').show();
				$(this).siblings('h2').css('border-color','#000');
				$(this).siblings('h2').css('color','#000');
			},
			function(){
				$(this).siblings('a.more').hide();
				$(this).siblings('h2').css('border-color','#999');
				$(this).siblings('h2').css('color','#222');
			}
		);

	$('.overview h2')
		.css('cursor','pointer')
		.click(function(){
			var t = $(this).siblings('a.more').attr('href');
			if (t!==undefined) window.location = t;
		})
		.hover(
			function(){
				$(this).siblings('a.more').show();
				$(this).css('border-color','#000');
				$(this).css('color','#000');
			},
			function(){
				$(this).siblings('a.more').hide();
				$(this).css('border-color','#999');
				$(this).css('color','#222');
			}
		);
	
	$('.overview 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');
	}
	
	
	$.gaTracker( 'UA-2901438-5', {
	 	localdomain: 'tarragontheatre.com',
	 	extensions: ['pdf','zip','doc','xls']
	});	
});
