
		$(function() {
			$('a.first').click(function() {
				$('#box1').fadeIn();
				$('#box2').fadeOut(000);
				$('#box3').fadeOut(000);
				$('#box4').fadeOut(000);	
				$('#box5').fadeOut(000);			
			});
			$('a.second').click(function() {
				$('#box1').fadeOut(000);
				$('#box2').fadeIn();
				$('#box3').fadeOut(000);
				$('#box4').fadeOut(000);
				$('#box5').fadeOut(000);			
			});
			$('a.third').click(function() {
				$('#box1').fadeOut(000);
				$('#box2').fadeOut(000);
				$('#box3').fadeIn();
				$('#box4').fadeOut(000);
				$('#box5').fadeOut(000);
			});
			$('a.fourth').click(function() {
				$('#box1').fadeOut(000);
				$('#box2').fadeOut(000);
				$('#box3').fadeOut(000);
				$('#box4').fadeIn();	
				$('#box5').fadeOut(000);			
			});
		});
			

