// JavaScript Document
$(document).ready(function() {
	$("p.four").click(function() {
		$('#fourD').show()
		$(this).addClass('fourB'); 
		$('#tenD').hide();
		$('#thirteenD').hide();
		$('#fifteenD').hide();
		$('#seventeenD').hide();
		$('#eighteenD').hide();
	});
	
	$("p.ten").click(function() {
		$('#tenD').show()
		$(this).addClass('tenB'); 
		$('#fourD').hide();
		$('#thirteenD').hide();
		$('#fifteenD').hide();
		$('#seventeenD').hide();
		$('#eighteenD').hide();
	});
	
	$("p.thirteen").click(function() {
		$('#thirteenD').show()
		$(this).addClass('thirteenB'); 
		$('#tenD').hide();
		$('#fourD').hide();
		$('#fifteenD').hide();
		$('#seventeenD').hide();
		$('#eighteenD').hide();
	});
	
	$("p.fifteen").click(function() {
		$('#fifteenD').show()
		$(this).addClass('fifteenB'); 
		$('#tenD').hide();
		$('#thirteenD').hide();
		$('#fourD').hide();
		$('#seventeenD').hide();
		$('#eighteenD').hide();
	});
	
	$("p.seventeen").click(function() {
		$('#seventeenD').show()
		$(this).addClass('seventeenB'); 
		$('#tenD').hide();
		$('#thirteenD').hide();
		$('#fifteenD').hide();
		$('#fourD').hide();
		$('#eighteenD').hide();
	});
	
	$("p.eighteen").click(function() {
		$('#eighteenD').show()
		$(this).addClass('eighteenB'); 
		$('#tenD').hide();
		$('#thirteenD').hide();
		$('#fifteenD').hide();
		$('#seventeenD').hide();
		$('#fourD').hide();
	});
});