$(function(){
	var cssMask = {
		backgroundPosition: 'top left',
		cursor: 'default',
		height: 0,
		paddingTop: 250
	}
	var cssShow = {
		backgroundPosition: 'bottom left',
		cursor: 'pointer',
		height: 250,
		paddingTop: 0
	}
	
	$('section')
	.css(cssMask)
	.hover(function(){
		$(this).css(cssShow);
		$(this + ' h2, ' + this + ' p').css({cursor: 'pointer'});
	}, function(){
		$(this).css(cssMask);
		$(this + ' h2, ' + this + ' p').css({cursor: 'default'});
	})
	.click(function(){
		window.location = $(this).find('a').attr('href');
		return false;
	});
});