$(document).ready(
	function(){	// fade effect for images
		$(".fade").hover(function () {						// on mouse over
			//$(this).stop().animate({opacity: 1.0}, 5000); 	
			$(this).stop(true,true).fadeTo("slow", 1);			// set opacity to 100%
			return false;
		},
			function() {							// on mouse out
				//$(this).stop().animate({opacity: 0.65}, "slow");
				$(this).stop(true,true).fadeTo("slow", 0.65);		// set opacity back to 65%
				return false;
			}
		);
	}
); 
