(function($) {
	$('.box').hover(
		function() {
			$(this).toggleClass('over', 300);
		}
	);
})(jQuery);
