(function ($) {
$(document).ready(function() {
	$('.block-menu-links a').live('click', function(event) {
		window.open($(this).attr("href"));
		event.preventDefault();
	});
	
	$('.story-year h3, .story-count, .stories-toggle').click(function() {
		myself = $(this).parent();
		$(this).siblings('.story-title').find('ul').slideToggle('medium', function() {
			if($(this).css('display') == 'none') {
				myself.children('.stories-toggle').addClass('stories-hidden');
			} else {
				myself.children('.stories-toggle').removeClass('stories-hidden');
			}
		});
	});
});
})(jQuery);
;

