﻿$(function() {
	if (!$("body").hasClass("author")) {
		$("a.about").click(function() {
			$("#about").slideToggle();
		});
	}
	
	if ($(".work_list").length > 0) {
		var i = 1;
		$(".work_list li").each(function() {
			if (i % 3 == 0) {
				$(this).css("marginRight","0");
			}
			i++;
		});
	}
	
	if ($(".anchor").length > 0) {
		$(".anchor").click(function(e) {
			e.preventDefault();
			var elem = $(this).attr("href");
			var dest = $(elem).offset().top - 30;
			$("html, body").animate({scrollTop: dest}, 500);
		});
	}
});
