$(document).ready(function() {
	$('#GalleryIndex > li')
		.hover(function() { $(this).addClass('Hover'); }, function() { $(this).removeClass('Hover'); } )
		.add('#GalleryIndex > li *').click(function(e) {
			e.preventDefault();
			var galleryContainer = $(this).is('li.GalleryContainer') ? $(this) : $(this).parents('li.GalleryContainer');
			window.location.href = galleryContainer.find('a.GalleryLink').attr('href');
		});
});
