/* Fade thumbnails
 * August 2011
 *
 * Version: 1.01
 *
 */

$(document).ready(function() {
	$('.thumb').each(function() {
		$(this).mouseover(function() {
			$(this).stop().fadeTo('normal',1);
		});
		$(this).mouseout(function() {
			$(this).stop().fadeTo('normal',.7);
		});
	});
}); //end ready()
