// Initiate Code for the Home Rotate code, and calendar tabbed box
  // When the document loads do everything inside here ...
	  $(document).ready(function(){		
		// When a link is clicked
		$("a.tab").click(function () {			
			// switch all tabs off
			$(".active").removeClass("active");
			// switch this tab on
			$(this).addClass("active");			
			// slide all content up
			$(".cal-content").slideUp();			
			// slide this content up
			var content_show = $(this).attr("title");
			$("#"+content_show).slideDown();
		});
		$('#hdr-imgs').cycle();
	  });
