$(document).ready(function() {
	
	// "footer" hover ----->
	
	var origColor = "#FDFEC4";
	var hoverColor = "#FFFF00";
	
	$("#footer-wrapper").hover(function() {
	    $("body,html").animate({backgroundColor: hoverColor}, 0);
	}, function() {
	    $("body,html").animate({backgroundColor: origColor}, 0);
	});
	
	// remove bottom border of last post ----->
	
	$("li.post").last().css('border-bottom', '0');
	
});
