(function ($){
	$(function (){
		$helpers.onShowElement = $helpers.createObserverableSubject();
		
		$('#reasons-links').swicher(function (){
			var $header = $($(this).attr('href')).find('h4');
			$helpers.onShowElement.notify($header);
		});
		
	});
})(jQuery);
