$(document).ready(function(){
						   $(".thmbitem").fadeTo("fast", 0.7);
						   $(".thmbitem").hover(function(){
						   $(this).fadeTo("fast", 1.0);
						   },function(){
						   $(this).fadeTo("fast", 0.7);
						   });
						   });