$(document).ready(function() {
 // hides the adv as soon as the DOM is ready
 // (a little sooner than page load)
  $('#bigfebruary').show();
  $('#bigmarch').hide();
  $('#bigapril').hide();
  $('#bigmay').hide();
  $('#bigjune').hide();
  $('#bigjuly').hide();
  $('#bigaugust').hide();
  $('#bigseptember').hide();
  $('#bigoctober').hide();
  $('#bignovember').hide();
 
 
  // toggles the bigmonth on clicking the noted link  
  $('.february').click(function() {
	  $('#bigfebruary').show();
	  $('#bigmarch').hide();
	  $('#bigapril').hide();
	  $('#bigmay').hide();
	  $('#bigjune').hide();
	  $('#bigjuly').hide();
	  $('#bigaugust').hide();
	  $('#bigseptember').hide();
	  $('#bigoctober').hide();
	  $('#bignovember').hide();
  	  return false;
  });
 
 
  // toggles the bigmonth on clicking the noted link  
  $('.march').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').show();
	  $('#bigapril').hide();
	  $('#bigmay').hide();
	  $('#bigjune').hide();
	  $('#bigjuly').hide();
	  $('#bigaugust').hide();
	  $('#bigseptember').hide();
	  $('#bigoctober').hide();
	  $('#bignovember').hide();
  	  return false;
  });
  
  // toggles the bigmonth on clicking the noted link  
  $('.april').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').hide();
	  $('#bigapril').show();
	  $('#bigmay').hide();
	  $('#bigjune').hide();
	  $('#bigjuly').hide();
	  $('#bigaugust').hide();
	  $('#bigseptember').hide();
	  $('#bigoctober').hide();
	  $('#bignovember').hide();
  	  return false;
  });
  
  // toggles the bigmonth on clicking the noted link  
  $('.may').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').hide();
	  $('#bigapril').hide();
	  $('#bigmay').show();
	  $('#bigjune').hide();
	  $('#bigjuly').hide();
	  $('#bigaugust').hide();
	  $('#bigseptember').hide();
	  $('#bigoctober').hide();
	  $('#bignovember').hide();
  	  return false;
  });
  
  // toggles the bigmonth on clicking the noted link  
  $('.june').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').hide();
	  $('#bigapril').hide();
	  $('#bigmay').hide();
	  $('#bigjune').show();
	  $('#bigjuly').hide();
	  $('#bigaugust').hide();
	  $('#bigseptember').hide();
	  $('#bigoctober').hide();
	  $('#bignovember').hide();
  	  return false;
  });
  
  // toggles the bigmonth on clicking the noted link  
  $('.july').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').hide();
	  $('#bigapril').hide();
	  $('#bigmay').hide();
	  $('#bigjune').hide();
	  $('#bigjuly').show();
	  $('#bigaugust').hide();
	  $('#bigseptember').hide();
	  $('#bigoctober').hide();
	  $('#bignovember').hide();
  	  return false;
  });
  
  // toggles the bigmonth on clicking the noted link  
  $('.august').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').hide();
	  $('#bigapril').hide();
	  $('#bigmay').hide();
	  $('#bigjune').hide();
	  $('#bigjuly').hide();
	  $('#bigaugust').show();
	  $('#bigseptember').hide();
	  $('#bigoctober').hide();
	  $('#bignovember').hide();
  	  return false;
  });
  
  // toggles the bigmonth on clicking the noted link  
  $('.september').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').hide();
	  $('#bigapril').hide();
	  $('#bigmay').hide();
	  $('#bigjune').hide();
	  $('#bigjuly').hide();
	  $('#bigaugust').hide();
	  $('#bigseptember').show();
	  $('#bigoctober').hide();
	  $('#bignovember').hide();
  	  return false;
  });
  
  // toggles the bigmonth on clicking the noted link  
  $('.october').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').hide();
	  $('#bigapril').hide();
	  $('#bigmay').hide();
	  $('#bigjune').hide();
	  $('#bigjuly').hide();
	  $('#bigaugust').hide();
	  $('#bigseptember').hide();
	  $('#bigoctober').show();
	  $('#bignovember').hide();
  	  return false;
  });
  
  // toggles the bigmonth on clicking the noted link  
  $('.november').click(function() {
	  $('#bigfebruary').hide();
	  $('#bigmarch').hide();
	  $('#bigapril').hide();
	  $('#bigmay').hide();
	  $('#bigjune').hide();
	  $('#bigjuly').hide();
	  $('#bigaugust').hide();
	  $('#bigseptember').hide();
	  $('#bigoctober').hide();
	  $('#bignovember').show();
  	  return false;
  });
});
