// JavaScript Document

$(document).ready(function() {
$('#box2').hide();	
$('#box3').hide();
$('#box4').hide();
$("#newseventstop").addClass("tabA");
 $('a#newsevents-toggle1').click(function() {
	$('#box2').hide();
	$('#box3').hide();
	$('#box4').hide();
	$('#box1').show();
	$("#newseventstop").removeClass("tabB");	
	$("#newseventstop").removeClass("tabC");
	$("#newseventstop").removeClass("tabD");
	$("#newseventstop").addClass("tabA");	
	return false;
  });
    $('a#newsevents-toggle2').click(function() {
	$('#box1').hide();
	$('#box3').hide();
	$('#box4').hide();
	$('#box2').show();
	$("#newseventstop").removeClass("tabA");
	$("#newseventstop").removeClass("tabC");
	$("#newseventstop").removeClass("tabD");
	$("#newseventstop").addClass("tabB");
	return false;
  });
	$('a#newsevents-toggle3').click(function() {
	$('#box1').hide();
	$('#box2').hide();
	$('#box4').hide();
	$('#box3').show();
	$("#newseventstop").removeClass("tabA");
	$("#newseventstop").removeClass("tabB");
	$("#newseventstop").removeClass("tabD");
	$("#newseventstop").addClass("tabC");
	return false;
  });
	$('a#newsevents-toggle4').click(function() {
	$('#box1').hide();
	$('#box2').hide();
	$('#box3').hide();
	$('#box4').show();
	$("#newseventstop").removeClass("tabA");
	$("#newseventstop").removeClass("tabB");
	$("#newseventstop").removeClass("tabC");
	$("#newseventstop").addClass("tabD");
	return false;
  });
});
  