$(document).ready(function(){
	
	$('#details').scrollFollow({
		container: 'container',
		offset: 200
	});
	$('#right a').click(function() {
		
		if($(this).hasClass('selected')) {
			return;
		}
		else {
			var wd = $(this).attr('rel');
			$('#right a').each(function() {
				$(this).removeClass('selected');
			});
			$(this).toggleClass('selected');
			$(".details").each(function() {
				if($(this).css('display') == "block") {
					$(this).stop('true', 'false');
					$(this).slideToggle("normal");
				}
			});
			$("#" + wd).slideToggle("normal");
		}
		
		
	});
});
