// The "jq_" prefix will be used to indicate jQuery scripts from regular javascripts.
// These various jQuery functions will hide the respective buttons, based upon their IDs. 
$(document).ready(function()
{
// alert('Welcome to jQuery!');
	var timeout = 600;
	var timeout2 = 300;

  $('#login_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});

  $('#continue_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});

  $('#go_month_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});

  $('#go_category_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});

  $('#reset_button').click(function()
		{	
		$(this).fadeOut(timeout);
		$('#cal_title').fadeOut(timeout2);
		});
		
  $('#prev_month_button').click(function()
		{	
		$(this).fadeOut(timeout);
		$('#cal_title').fadeOut(timeout2);
		});
		
  $('#next_month_button').click(function()
		{	
		$(this).fadeOut(timeout);	
		$('#cal_title').fadeOut(timeout2);
		});
		
  $('#options_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});

  $('#save_options_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});
	
  $('#add_event_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});
		
  $('#edit_event_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});
		
  $('#add_abbr_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});
		
  $('#edit_abbr_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});
	
 $('#submit_email_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});	
		
 $('#submit_remove_email_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});	
		
  $('#add_user_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});
		
  $('#clear_form_button').click(function()
		{	
		$(this).fadeOut(timeout);
		});
		
});


