jQuery(document).ready(function() {

	// mouseover section
	jQuery("#homePhotoSection, #homePhotoSection .recentPosts, #homePhotoSection .flickrLink, #photosWrapper, #photosWrapper .flickrLink").hover(
		function () {
			jQuery(this).addClass("sectionHover");
		},
		function () {
			jQuery(this).removeClass("sectionHover");
		}
	);

});

