/* jQuery+link.active */
$(document).ready(function() {
	if(location.pathname != "/") {
		$('a[href="' + location.pathname + '"]').addClass('active');
	} 
});