// JavaScript Document

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('.2009').hide();

 // toggles the slickbox on clicking the noted link
  $('a.2009toggle').click(function() {
	$('.2009').toggle(400);
	return false;
  });
});

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('.2008').hide();

 // toggles the slickbox on clicking the noted link
  $('a.2008toggle').click(function() {
	$('.2008').toggle(400);
	return false;
  });
});

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('.2007').hide();

 // toggles the slickbox on clicking the noted link
  $('a.2007toggle').click(function() {
	$('.2007').toggle(400);
	return false;
  });
});


$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('.2006').hide();

 // toggles the slickbox on clicking the noted link
  $('a.2006toggle').click(function() {
	$('.2006').toggle(400);
	return false;
  });
});