// JavaScript Document

$(document).ready(function() {
	$('.research_links a').each(function() {
		if($(this).attr('href') == window.location.pathname) {
			$(this).css({'font-weight' : 'bold'});
		}
	});
});

