/* Aalto Venture Garage theme Javascript code */
(function($) {
	$(function() {
		// Add down arrow to site navigation links with sublinks
		$('#navigation ul.menu > li > a').each(function(i, link) {
			if ($(link).next().is('ul')) {
				$(link).append(
					$('<span/>').addClass('page_item_more').html('&nbsp;&darr;')
				);
			}
		});
	});
})(jQuery);

