// JavaScript Document
	$(document).ready(function(){
							   
		$("a.mSelect").hover(
		   function () {
			  $('.selected').each(function(){
				  $(this).removeClass('selected');
				  $(this).hide();
			  });
			  var month = $(this).attr("rel");
			  $("#m" + month).addClass('selected');
			  $("#m" + month).fadeIn();
		   },
		   function () {}
		); 
		
		$("a.cgomSelect").hover(
		   function () {
			  $('.selected').each(function(){
				  $(this).removeClass('selected');
				  $(this).hide();
			  });
			  var month = $(this).attr("rel");
			  $("#cgm" + month).addClass('selected');
			  $("#cgm" + month).fadeIn();
		   },
		   function () {}
		); 
	 
	});
			