$(function() {
		$("a > img").mouseover(function() {
			$(this).fadeTo('fast',0.65);
		}
		).mouseout(function() {
			$(this).fadeTo('fast',1);
		}
		);
		
		$(".thumb").mouseover(function() {
			$(this).css('opacity',0.65);
		}
		).mouseout(function() {
			$(this).css('opacity',1);
		}
		);
});
