$('document').ready(function() {

	// Hide titles at load
	$('#home-titles h2').css('display', 'none');
	$('#default-title').show();
	
	$('#home-thumbs a').hover(function() {
		var thisOne = $(this).attr('id');
		var thisLen = thisOne.length - 5;
		thisOne = thisOne.substr(0,thisLen);
		$('#home-titles h2').hide();
		$('#' + thisOne + '-title').show();
	});
	
	$('#header, #below-fold').hover(function() {
		$('#home-titles h2').hide();
		$('#default-title').show();
	},
	function() {
		// nothing
	});
	
});