

$(document).ready(function() {
	$('.large').hover(function() {
		$(this).css('cursor', 'pointer');
	});
});

