$(function() {
	$(".imageInner").hover(
		function() {
			$(this).addClass('hovering');
		},
		function() {
			$(this).removeClass('hovering');
		}
	);
	
});
