$(function () {
	$('.galleryitem img').hover(function() {
		$(this).fadeTo("fast", .31);
	}, function() {
		$(this).fadeTo("slow", 1);
	});
});
$(function () {
	$('#featured img').hover(function() {
		$(this).fadeTo("fast", .31);
	}, function() {
		$(this).fadeTo("slow", 1);
	});
});
