$(document).ready(function() {

	$(".section").mouseenter(function() {
		$(this).addClass("hover");
	}).mouseleave(function() {
		$(this).removeClass("hover");
	});

});
