// JavaScript Document

		function HotTopicRotator() {
		  //uses the "jCarousel Lite" plugin for effect
		  $(".hot_topic_item").jCarouselLite({  
		    vertical:true,  
		    visible:1,  
		    auto:3500,  
		    speed:1000 
		  }); 
		}
		
		function HotTopicRotator_test() {
		  //uses the "jCarousel Lite" plugin for effect
		  $(".hot_topic_item_test").jCarouselLite({  
		    vertical:true,  
		    visible:1,  
		    auto:3500,  
		    speed:1000 
		  }); 
		}

		function SimpleDrawerToggle(ElementToToggle) {
		  //toggle a sliding content area
		  if ( $(ElementToToggle).length ) {
		    $(ElementToToggle).slideToggle("slow");
		  }
		}
		
		function SimpleAccordion(ElementTrigger, ElementToToggle) {
		  //toggle accordion effect, all triggers and siblings should use the same naming taxonomy
		  $(ElementTrigger).next(ElementToToggle).slideToggle("slow").siblings(ElementToToggle).slideUp("slow");
		  $(ElementTrigger).focus();
		}
