$(document).ready(function() {

	$(".colorbox").colorbox({maxWidth:"90%", maxHeight:"90%", opacity:".2"});
	$(".colorbox-map").colorbox({width:"95%", height:"95%", iframe:true});
	
	$('table tbody tr:odd').addClass('odd');
	$('table tbody tr:even').addClass('even');
	
	//hide the all of the element with class msg_body
  $(".month_entry").hide();
  $(".month_entry:first").slideToggle(600);
  //toggle the componenet with class msg_body
  $(".year_entry").click(function()
  {
    $(this).next(".month_entry").slideToggle(600);
  });
  
});
