$(document).ready(function() {
	$('#main-image-box').children().removeClass('facets').end().facets({
		clipSpacing: 2,
		minWidth: 25,
		animationSpeed: 350,
		minimizeTimeout: 150,
		sense: true,
		contentRelations: true,
		beforeMax: function(index) {
			$('#main-image-box .clip:eq('+index+') .infotext').show();
		},
		beforeMin: function(index) {
			$('#main-image-box .clip:eq('+index+')').find('p').hide().end().find('.infotext').hide();
		}
	});
	$("#richmond").bind('mouseover', function()	{
		$("body").animate({backgroundColor: '#6d6e71'}, 500);
	});
	$("#port_moody").bind('mouseover', function()	{
		$("body").animate({backgroundColor: 'white'}, 500);
	});
	
	
	$('a.infotext').click(function() {
		$(this).parents('.container').children('p').toggle();
	});
});
