$(document).ready(function(){
	$(".thumbimage").fadeTo(100, 1.0);

	$(".thumbimage").hover(function(){
		$(this).stop(true).fadeTo(100, 0.7);
	},

	function(){
		$(this).fadeTo(100, 1.0);
	});
});