$(function() {
		
	var thumbLinks = $('.galleryThumbs a');
	
	thumbLinks.animate({
		"opacity" : .7
	});
	
	thumbLinks.hover(function(){
		$(this).stop().animate({
			"opacity" : 1
		}, 200);
	}, function(){
		$(this).stop().animate({
			"opacity" : .7
		}, 200);
	});
	
});
