$(document).ready(function() {
	$(".Gallery").hover(function() {
		$(this).addClass("Hover");
	}, function() {
		$(this).removeClass("Hover");
	}).click(function() {
		window.location = $(this).find("a").attr("href");
	});
});