
	<!--
		$(document).ready(Collapser.init);
		$(document).ready(function() {
			
			$('.collapsible .button').hover(function() {
				$(this).addClass('hover');
			}, function() {
				$(this).removeClass('hover');
			});

			$('.block-menu a').click(function(){
				if($(this).attr('href') != "undefine")
					$($(this).attr('href')).trigger('click');
			});

		});
	-->


