	(function($){
		$(document).ready(function() {
			$.backstretch($('.content a img:first').attr('rel'));
			$('.content a img').click(function() {
				$('#backstretch').addClass('bhelge');
				$.backstretch($(this).attr('rel'));
				setTimeout(function(){
				    $('.bhelge').remove();
				}, 250);
			});
			$('li.year').click(function(){
				$('li.drop, li.year').removeClass('active');
				$(this).addClass('active');
				$(this).next('li').addClass('active');
			});

			var arrow = '/images/v7/arrow_left.png'

			$('#swap a').click(function(){
				$('#outer_container').animate({
					width: 'toggle'
				}, 500, function(){
					if (arrow == '/images/v7/arrow_right.png'){ arrow = '/images/v7/arrow_left.png' }
					else { arrow = '/images/v7/arrow_right.png' }
					$('#showHide a img').attr('src',arrow);
				});
			});
		});
	})(jQuery);
