$(document).ready(function() {
        $('.thumbnail_base_1 img, .thumbnail_base_2 img, .thumbnail_base_3 img, .thumbnail img').each(function() {
            $(this).hover(function() {
                //$(this).stop().animate({ opacity: 0.9 }, 15);
				//$(this).animate({ opacity: 1.0 }, 15);
				//$(this).animate({ opacity: 0.75 }, 500);
				$(this).stop().animate({ opacity: 0.75 }, 500);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 900);
           });
        });
		
		$('.square h2, .square h3, .rectangle h2').each(function() {
            $(this).hover(function() {
				$(this).stop().animate({ opacity: 0 }, 300);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 900);
           });
        });
});
